Coder Social home page Coder Social logo

nriddiford / svparser Goto Github PK

View Code? Open in Web Editor NEW
8.0 3.0 1.0 4.17 MB

Explore and filter structural variant calls from Lumpy and Delly VCF files

License: MIT License

Perl 61.27% Shell 6.56% Python 32.17%
structural-variation vcf wgs-data somatic-mutations cancer-genomics filter-structural-variants filter-lumpy-express variants filtering-variants

svparser's Introduction

License: MIT

svParser

Filter, genotype, annotate and combine VCF files from structural variant callers LUMPY, DELLY and novobreak. Run without options or with --help or -h to print usage statement.

This tool is under constant development. Please feel free to contact me, or raise an issue if you encounter any problems.

Table of Contents

Installation

git clone https://github.com/nriddiford/svParser.git

Install cpanm for easy installation of requirements:

wget -O- http://cpanmin.us | perl - -l ~/perl5 App::cpanminus local::lib

To avoid issues with root access, I recommended using a local Perl library, which can be setup as follows (following this):

eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib`

Add the following lines to your bash_profile (or.profile/.bashrc/):

eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib`
export MANPATH=$HOME/perl5/man:$MANPATH

Once you have cpanm installed, then installing the dependencies should be as simple as:

cd svParser
bash install_deps.sh

Summarise variants

A good place to start is with a summary of variants called in VCF file:

Read vcf file from lumpy (or delly/novobreak) and see summary of variants called:

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf It's reccomended to explicity tag files on the caller that has produced them using the --method flag:
perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l

Genotyping variants

The defualt behaviour of svParser is to consider all variants present in a VCF file, and classify these according to genotype. Genotype will be assigned as follows:

  • germline_recurrent - variants with high quality read support in both a tumour and normal sample and at least one other sample in a Panel of Normals (PON)
  • germline_private - variants with high quality read support in both a tumour and normal sample but NOT in a any samples in a PON
  • somatic_normal - variants with high quality read support in normal sample, but not in tumour sample
  • somatic_tumour - variants with high quality read support in tumour sample, but not in normal sample

Genotypes can also be filtered in using the genotype filters outlined in the filter section

IMPORTANT:

  • Variants called by LUMPY must also be genotyped by SVTyper
  • Genotyping requires that the samples in the VCF are ordered as follows: TUMOUR NORMAL PON.1 ... PON.N

Filtering variants

The real power of svParser comes from its ability to easily filter variant calls on anumber of different criteria, and quickly assess how this affects your callset. It is highly recommended to play around with differnt combinations of filters that suit your needs. Filter flags can be used with any of the other options aid in fine tuning

Filters available:

su   -   number of tumour reads supporting variant. Expects integer e.g. `-f su=5`
dp   -   minimum depth for both tumour normal at variant site. Expects integer e.g. `-f dp=10`
rdr  -   supporting reads/tumour depth - a value of 1 would mean all reads support variant. Expects integer/float e.g. `-f rdr=0.2`
sq   -   phred-scaled variant likelihood. Expects integer e.g. `-f sq=10`
chr  -   filter out chromosomes not in `chroms.txt` (if not provided, defaults to chromosomes 2L 2R 3L 3R 4 X Y). Expects binary e.g. `-f chr=1`
st   -   only keep somatic TUMOUR variants. Expects binary e.g. `-f st=1`
sn   -   only keep somatic NORMAL variants. Expects binary e.g. `-f sn=1`
gp   -   only keep germline PRIVATE variants. Expects binary e.g. `-f gp=1`
gr   -   only keep germline RECURRENT variants. Expects binary e.g. `-f gr=1`
a    -   apply default combination of filters. Equivalent to:

perl script/svParse.pl \
-v data/Droso_R7.lumpy.vcf \
-f su=4 \     # min 4 reads supporting event in tumour
-f dp=10 \    # min read depth of 10 in both tumour/normal
-f rdr=0.1 \  # min 10% of reads at breakpoint supporting variant
-f sq=10 \    # min Log10 likelihood of 10
-f chr=1      # filter out calls on chromosomes not in 'chroms.txt'
  • In addition, users can provide a bed file containing regions to exclude by using -e [path/to/exclude.bed]

Filter-check-filter strategy to hone filters

Filters can be used in combination with other features of svParser to experiment with filters that remove obvious false positives while retaining true positives. E.g:

See summary of variants that have >= 4 reads supporting call in tumour (-f su=4)

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -f su=4

See summary of variants that have >= 4 reads supporting call in tumour and have both breakpoints on chromosomes contained in chroms.txt

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -f su=4 -f chr=1

Test filters on true positive variant calls

If you have a set of true positive calls that you want to protect from filtering, you can provide a set of sample-specfic true positives:

sample  caller   type   chrom1   bp1      chrom2    bp2
R7      lumpy    DEL    X        456393   X         4588700

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -f su=4 -f chr=1 -t tests/

This allows you to see how adjusting filters affects your true positives.

Inspect specific variant call

Sometimes it's useful to see the information behind a specific variant call. svParser makes it easy to dig out a variant using it's id (taken from the VCF column ID) If the variant is affected by supplied filters this will be reported in the summary

Investigate a specific variant (by ID) using the --id flag:

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -i 1

Browse variants

Browse variants using the --dump flag. This cycles through each line of the VCF file, printing an easy-to-read breakdown for each variant. Press any key to move to the next variant, or q to quit

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -d

Browse all variants with su>=5 on X chromosome (-c X -f su=5):

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -f su=5 -d -c X

Browse all variants within a specific window on X chromosome (-c X:3000000-3500000):

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -d -c X:3000000-3500000

Browse all variants that passed read depth filter (-f dp=20) filter within a specific window on X chromosome:

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -m l -f dp=20 -d -c X:3000000-3500000

Print variants

Write a new VCF file (filtered/input.filtered.vcf) and a summary txt file containing useful info (filtered/summary/input.filtered.summary.txt).

Print (-p) all variants that passed all defualt filters (-f a):

perl script/svParse.pl -v data/Droso_R7.lumpy.vcf -f a -p

Combining calls from multiple sources

Another useful feature of svParser is its ability to combine calls made by multiple callers into a unified call set per sample

Run on all samples

Generate filtered vcf and summary file for calls made by delly, lumpy and novoBreak:

for file in data/lumpy/*.vcf
do
  perl script/svParse.pl -v $file -f a -m l -p
done
for file in data/delly/*.vcf
do
  perl script/svParse.pl -v $file -f a -m d -p
done
for file in data/novobreak/*.vcf
do
  perl script/svParse.pl -v $file -f a -m n -p
done

Merge calls together in VCF using merge_vcf

Run merge_vcf on all filtered files. (Run from filtered directory):

cd filtered
perl ../script/merge_vcf.pl

Merge summary output foreach sample

Run svMerger.pl for all files in sample group. E.g. input1.delly.filtered.summary.txt input1.lumpy.filtered.summary.txt input1.novobreak.filtered.summary.txt

cd filtered/summary
perl ../../script/svMerger.pl -f input1.*

Cluster sv calls that are close together (+/- 50 bp):

for f in *_merged_SVs.txt
do
  perl ../../script/svClusters.pl $f -d 50
  rm $f
done

Annotate calls from a .gtf file

This takes a user-provided .gtf file and annotates variants with what feature/gene they affect:

features=/path/to/annotations.gtf

for clustered_file in *clustered_SVs.txt
do
  perl ../../script/sv2gene.pl -f $features -i $clustered_file
  rm $clustered_file
done

Cleaning results

The recommended next step from here is to inspect calls that remain. Any obvious false positives can be marked as false positives by entering F in the T/F column for each _annotated.txt file.

These can then be removed by using:

for annofile in *_annotated_SVs.txt
do
  python ../../script/clean.py -f $annofile
done

Plotting results

See svBreaks for plotting functions. This takes as input the annotated SV calls per sample

svparser's People

Contributors

nriddiford avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

bardin-lab

svparser's Issues

Use of uninitialized value

Hi,
I am trying to run the perl script svParse.pl on a structural variant vcf (normal-tumor) generated with Lumpy and genotyped with svTyper.
I want to apply the filters that you suggested to filter in somatic variants as follows:

perl $PERLDIR/svParse.pl \
-v $MYDIR/LumpyDir/$SAMPLE/NBD99-smoove.genotyped.vcf -f su=4 \     # min 4 reads supporting event in tumour
-f dp=10 \    # min read depth of 10 in both tumour/normal
-f rdr=0.1 \  # min 10% of reads at breakpoint supporting variant
-f sq=10 \    # min Log10 likelihood of 10
-f chr=0      # filter out calls on chromosomes not in 'chroms.txt' // this is actually not set 

What I unluckily got is thousands of lines of error messages with this pattern:

Use of uninitialized value $t_SR in numeric eq (==) at /srv/ngs/analysis/dalteriog/Tools/svParser/script/../bin/svParser.pm line 191, <$_[...]> line 11737.
(this is one of the last, but it happens for every field).

here I print the first 5 lines (along with the header) of my vcf
cat $MYDIR/LumpyDir/$SAMPLE/NBD99-smoove.genotyped.vcf | head -146

##fileformat=VCFv4.2
##FILTER=<ID=PASS,Description="All filters passed">
##fileDate=20220519
##reference=/srv/ngs/analysis/aievola/references/Homo_sapiens/GATK/GRCh37/Sequence/WholeGenomeFasta/hs37d5.fa
##INFO=<ID=SVTYPE,Number=1,Type=String,Description="Type of structural variant">
##INFO=<ID=SVLEN,Number=.,Type=Integer,Description="Difference in length between REF and ALT alleles">
##INFO=<ID=END,Number=1,Type=Integer,Description="End position of the variant described in this record">
##INFO=<ID=STRANDS,Number=.,Type=String,Description="Strand orientation of the adjacency in BEDPE format (DEL:+-, DUP:-+, INV:++/--)">
##INFO=<ID=IMPRECISE,Number=0,Type=Flag,Description="Imprecise structural variation">
##INFO=<ID=CIPOS,Number=2,Type=Integer,Description="Confidence interval around POS for imprecise variants">
##INFO=<ID=CIEND,Number=2,Type=Integer,Description="Confidence interval around END for imprecise variants">
##INFO=<ID=CIPOS95,Number=2,Type=Integer,Description="Confidence interval (95%) around POS for imprecise variants">
##INFO=<ID=CIEND95,Number=2,Type=Integer,Description="Confidence interval (95%) around END for imprecise variants">
##INFO=<ID=MATEID,Number=.,Type=String,Description="ID of mate breakends">
##INFO=<ID=EVENT,Number=1,Type=String,Description="ID of event associated to breakend">
##INFO=<ID=SECONDARY,Number=0,Type=Flag,Description="Secondary breakend in a multi-line variants">
##INFO=<ID=SU,Number=.,Type=Integer,Description="Number of pieces of evidence supporting the variant across all samples">
##INFO=<ID=PE,Number=.,Type=Integer,Description="Number of paired-end reads supporting the variant across all samples">
##INFO=<ID=SR,Number=.,Type=Integer,Description="Number of split reads supporting the variant across all samples">
##INFO=<ID=BD,Number=.,Type=Integer,Description="Amount of BED evidence supporting the variant across all samples">
##INFO=<ID=EV,Number=.,Type=String,Description="Type of LUMPY evidence contributing to the variant call">
##INFO=<ID=PRPOS,Number=.,Type=String,Description="LUMPY probability curve of the POS breakend">
##INFO=<ID=PREND,Number=.,Type=String,Description="LUMPY probability curve of the END breakend">
##ALT=<ID=DEL,Description="Deletion">
##ALT=<ID=DUP,Description="Duplication">
##ALT=<ID=INV,Description="Inversion">
##ALT=<ID=DUP:TANDEM,Description="Tandem duplication">
##ALT=<ID=INS,Description="Insertion of novel sequence">
##ALT=<ID=CNV,Description="Copy number variable region">
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
##FORMAT=<ID=SU,Number=1,Type=Integer,Description="Number of pieces of evidence supporting the variant">
##FORMAT=<ID=PE,Number=1,Type=Integer,Description="Number of paired-end reads supporting the variant">
##FORMAT=<ID=SR,Number=1,Type=Integer,Description="Number of split reads supporting the variant">
##FORMAT=<ID=BD,Number=1,Type=Integer,Description="Amount of BED evidence supporting the variant">
##FORMAT=<ID=GQ,Number=1,Type=Integer,Description="Genotype quality">
##FORMAT=<ID=SQ,Number=1,Type=Float,Description="Phred-scaled probability that this site is variant (non-reference in this sample">
##FORMAT=<ID=GL,Number=G,Type=Float,Description="Genotype Likelihood, log10-scaled likelihoods of the data given the called genotype for each possible genotype generated from the reference and alternate alleles given the sample ploidy">
##FORMAT=<ID=DP,Number=1,Type=Integer,Description="Read depth">
##FORMAT=<ID=RO,Number=1,Type=Integer,Description="Reference allele observation count, with partial observations recorded fractionally">
##FORMAT=<ID=AO,Number=A,Type=Integer,Description="Alternate allele observations, with partial observations recorded fractionally">
##FORMAT=<ID=QR,Number=1,Type=Integer,Description="Sum of quality of reference observations">
##FORMAT=<ID=QA,Number=A,Type=Integer,Description="Sum of quality of alternate observations">
##FORMAT=<ID=RS,Number=1,Type=Integer,Description="Reference allele split-read observation count, with partial observations recorded fractionally">
##FORMAT=<ID=AS,Number=A,Type=Integer,Description="Alternate allele split-read observation count, with partial observations recorded fractionally">
##FORMAT=<ID=ASC,Number=A,Type=Integer,Description="Alternate allele clipped-read observation count, with partial observations recorded fractionally">
##FORMAT=<ID=RP,Number=1,Type=Integer,Description="Reference allele paired-end observation count, with partial observations recorded fractionally">
##FORMAT=<ID=AP,Number=A,Type=Integer,Description="Alternate allele paired-end observation count, with partial observations recorded fractionally">
##FORMAT=<ID=AB,Number=A,Type=Float,Description="Allele balance, fraction of observations from alternate allele, QA/(QR+QA)">
##contig=<ID=1,length=249250621>
##contig=<ID=2,length=243199373>
##contig=<ID=3,length=198022430>
##contig=<ID=4,length=191154276>
##contig=<ID=5,length=180915260>
##contig=<ID=6,length=171115067>
##contig=<ID=7,length=159138663>
##contig=<ID=8,length=146364022>
##contig=<ID=9,length=141213431>
##contig=<ID=10,length=135534747>
##contig=<ID=11,length=135006516>
##contig=<ID=12,length=133851895>
##contig=<ID=13,length=115169878>
##contig=<ID=14,length=107349540>
##contig=<ID=15,length=102531392>
##contig=<ID=16,length=90354753>
##contig=<ID=17,length=81195210>
##contig=<ID=18,length=78077248>
##contig=<ID=19,length=59128983>
##contig=<ID=20,length=63025520>
##contig=<ID=21,length=48129895>
##contig=<ID=22,length=51304566>
##contig=<ID=X,length=155270560>
##contig=<ID=Y,length=59373566>
##contig=<ID=MT,length=16569>
##contig=<ID=GL000207.1,length=4262>
##contig=<ID=GL000226.1,length=15008>
##contig=<ID=GL000229.1,length=19913>
##contig=<ID=GL000231.1,length=27386>
##contig=<ID=GL000210.1,length=27682>
##contig=<ID=GL000239.1,length=33824>
##contig=<ID=GL000235.1,length=34474>
##contig=<ID=GL000201.1,length=36148>
##contig=<ID=GL000247.1,length=36422>
##contig=<ID=GL000245.1,length=36651>
##contig=<ID=GL000197.1,length=37175>
##contig=<ID=GL000203.1,length=37498>
##contig=<ID=GL000246.1,length=38154>
##contig=<ID=GL000249.1,length=38502>
##contig=<ID=GL000196.1,length=38914>
##contig=<ID=GL000248.1,length=39786>
##contig=<ID=GL000244.1,length=39929>
##contig=<ID=GL000238.1,length=39939>
##contig=<ID=GL000202.1,length=40103>
##contig=<ID=GL000234.1,length=40531>
##contig=<ID=GL000232.1,length=40652>
##contig=<ID=GL000206.1,length=41001>
##contig=<ID=GL000240.1,length=41933>
##contig=<ID=GL000236.1,length=41934>
##contig=<ID=GL000241.1,length=42152>
##contig=<ID=GL000243.1,length=43341>
##contig=<ID=GL000242.1,length=43523>
##contig=<ID=GL000230.1,length=43691>
##contig=<ID=GL000237.1,length=45867>
##contig=<ID=GL000233.1,length=45941>
##contig=<ID=GL000204.1,length=81310>
##contig=<ID=GL000198.1,length=90085>
##contig=<ID=GL000208.1,length=92689>
##contig=<ID=GL000191.1,length=106433>
##contig=<ID=GL000227.1,length=128374>
##contig=<ID=GL000228.1,length=129120>
##contig=<ID=GL000214.1,length=137718>
##contig=<ID=GL000221.1,length=155397>
##contig=<ID=GL000209.1,length=159169>
##contig=<ID=GL000218.1,length=161147>
##contig=<ID=GL000220.1,length=161802>
##contig=<ID=GL000213.1,length=164239>
##contig=<ID=GL000211.1,length=166566>
##contig=<ID=GL000199.1,length=169874>
##contig=<ID=GL000217.1,length=172149>
##contig=<ID=GL000216.1,length=172294>
##contig=<ID=GL000215.1,length=172545>
##contig=<ID=GL000205.1,length=174588>
##contig=<ID=GL000219.1,length=179198>
##contig=<ID=GL000224.1,length=179693>
##contig=<ID=GL000223.1,length=180455>
##contig=<ID=GL000195.1,length=182896>
##contig=<ID=GL000212.1,length=186858>
##contig=<ID=GL000222.1,length=186861>
##contig=<ID=GL000200.1,length=187035>
##contig=<ID=GL000193.1,length=189789>
##contig=<ID=GL000194.1,length=191469>
##contig=<ID=GL000225.1,length=211173>
##contig=<ID=GL000192.1,length=547496>
##contig=<ID=NC_007605,length=171823>
##contig=<ID=hs37d5,length=35477943>
##smoove_version=0.2.8
##smoove_count_stats=sample_control_XI003_NB-S_559:28112073,50782761,655708,915464
##smoove_count_stats=sample_tumor_XI003_NB-S_559:45240623,74879219,1439450,1092014
##source=LUMPY
##bcftools_viewVersion=1.15.1+htslib-1.15.1
##bcftools_viewCommand=view -O z -o NBD99-smoove.genotyped.vcf.gz; Date=Thu May 19 18:30:22 2022
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT sample_control_XI003_NB-S_559 sample_tumor_XI003_NB-S_559
1 10621 1 N 267.12 . SVTYPE=DEL;SVLEN=-132;END=10753;STRANDS=+-:8;CIPOS=-10,9;CIEND=-10,9;CIPOS95=0,0;CIEND95=0,0;SU=8;PE=0;SR=8;PRPOS=9.98739e-33,1.58289e-29,2.50872e-26,3.97605e-23,6.30162e-20,9.98739e-17,1.58289e-13,2.50872e-10,3.97605e-07,0.000630162,0.998739,0.000630162,3.97605e-07,2.50872e-10,1.58289e-13,9.98739e-17,6.30162e-20,3.97605e-23,2.50872e-26,1.58289e-29;PREND=9.98739e-33,1.58289e-29,2.50872e-26,3.97605e-23,6.30162e-20,9.98739e-17,1.58289e-13,2.50872e-10,3.97605e-07,0.000630162,0.998739,0.000630162,3.97605e-07,2.50872e-10,1.58289e-13,9.98739e-17,6.30162e-20,3.97605e-23,2.50872e-26,1.58289e-29 GT:GQ:SQ:GL:DP:RO:AO:QR:QA:RS:AS:ASC:RP:AP:AB 1/1:5:60.25:-6,-1,-0:2:0:2:0:2:0:2:0:0:0:1 1/1:17:206.87:-21,-2,-0:7:0:7:0:7:0:4:2:0:0:1
1 724849 441 N 1032.98 . SVTYPE=DUP;SVLEN=223477470;END=224202319;STRANDS=-+:35;IMPRECISE;CIPOS=-112,29;CIEND=-30,133;CIPOS95=-14,10;CIEND95=-11,21;SU=35;PE=35;SR=0;PRPOS=7.31826e-15,1.06072e-14,1.53884e-14,2.23119e-14,3.22149e-14,4.6432e-14,6.68358e-14,9.63105e-14,1.38067e-13,1.968e-13,2.80319e-13,3.98685e-13,5.65739e-13,8.00447e-13,1.13428e-12,1.59774e-12,2.24908e-12,3.15698e-12,4.44317e-12,6.2215e-12,8.71191e-12,1.21375e-11,1.68966e-11,2.34437e-11,3.25018e-11,4.48895e-11,6.19883e-11,8.55856e-11,1.17496e-10,1.61075e-10,2.19779e-10,3.00624e-10,4.0918e-10,5.56862e-10,7.56663e-10,1.02551e-09,1.38987e-09,1.87854e-09,2.53988e-09,3.42081e-09,4.59466e-09,6.17216e-09,8.25484e-09,1.10312e-08,1.47052e-08,1.96235e-08,2.60276e-08,3.45669e-08,4.58136e-08,6.0618e-08,7.98451e-08,1.0526e-07,1.38332e-07,1.81576e-07,2.37851e-07,3.11342e-07,4.07076e-07,5.30309e-07,6.90093e-07,8.96642e-07,1.16086e-06,1.5008e-06,1.94051e-06,2.50171e-06,3.22146e-06,4.14169e-06,5.3145e-06,6.82287e-06,8.73822e-06,1.11828e-05,1.42666e-05,1.81517e-05,2.3054e-05,2.92695e-05,3.71059e-05,4.69476e-05,5.94023e-05,7.49642e-05,9.4439e-05,0.000118739,0.000148988,0.000186701,0.000233416,0.000291159,0.000363116,0.000452758,0.000562259,0.000697707,0.000864503,0.00106861,0.0013195,0.00162918,0.00199927,0.00245865,0.00301755,0.00369195,0.00451476,0.00551105,0.00672747,0.00819528,0.00996772,0.0121071,0.0146637,0.0177225,0.0214036,0.0258517,0.0311365,0.0374675,0.0450298,0.0539719,0.0645381,0.0771325,0.0920682,0.0806902,0.0706603,0.0618243,0.0539144,0.0469061,0.0408498,0.0355114,0.0226553,0.0144417,0.00918749,0.00583393,0.00370107,0.0023405,0.00148176,0.000936035,0.000590878,0.000372162,0.000233828,0.000146939,9.20985e-05,4.24179e-05,1.95269e-05,4.85664e-06,1.20424e-06,2.98081e-07,7.37922e-08,1.8246e-08,4.50555e-09,1.11007e-09;PREND=7.77101e-11,4.50701e-10,2.60989e-09,1.11134e-08,4.7286e-08,2.01104e-07,8.54707e-07,2.67136e-06,8.33486e-06,1.91004e-05,4.37561e-05,0.000100151,0.000228848,0.000384975,0.000645942,0.00108297,0.00181478,0.00303932,0.00508236,0.00848684,0.0104301,0.0128009,0.0156758,0.0191859,0.0234613,0.0286814,0.0349932,0.042661,0.0519479,0.0632162,0.0768669,0.068606,0.0612592,0.0545988,0.0486238,0.043256,0.0384393,0.0341092,0.0302223,0.0267878,0.0237207,0.0209797,0.0185257,0.0163464,0.0143966,0.0126715,0.0111306,0.00977859,0.00858504,0.00752211,0.0065782,0.00574568,0.00501302,0.00437428,0.00381148,0.00331508,0.00287985,0.00249883,0.00216435,0.00187005,0.00161681,0.00139586,0.0012044,0.00103805,0.000893982,0.000767604,0.000658866,0.00056467,0.000483133,0.000413214,0.000352576,0.0003005,0.000255915,0.000217683,0.000184874,0.000156553,0.00013255,0.000111932,9.46469e-05,7.96953e-05,6.71155e-05,5.63835e-05,4.72711e-05,3.96004e-05,3.31596e-05,2.77039e-05,2.31293e-05,1.9246e-05,1.59975e-05,1.32687e-05,1.10127e-05,9.1263e-06,7.53889e-06,6.21187e-06,5.11649e-06,4.209e-06,3.45916e-06,2.83092e-06,2.31703e-06,1.89104e-06,1.54263e-06,1.25698e-06,1.02034e-06,8.27482e-07,6.70772e-07,5.42394e-07,4.37511e-07,3.52347e-07,2.83191e-07,2.27276e-07,1.81793e-07,1.45518e-07,1.15945e-07,9.24884e-08,7.3356e-08,5.82602e-08,4.61746e-08,3.64294e-08,2.87332e-08,2.25405e-08,1.77515e-08,1.39235e-08,1.0915e-08,8.54069e-09,6.67277e-09,5.18396e-09,4.02603e-09,3.1255e-09,2.41642e-09,1.86307e-09,1.43627e-09,1.10158e-09,8.45554e-10,6.45979e-10,4.92719e-10,3.7521e-10,2.854e-10,2.16169e-10,1.63226e-10,1.2322e-10,9.30143e-11,6.99968e-11,5.24524e-11,3.90691e-11,2.91149e-11,2.17142e-11,1.60905e-11,1.19055e-11,8.81017e-12,6.49288e-12,4.76735e-12,3.50126e-12,2.56285e-12,1.87162e-12,1.36617e-12,9.93474e-13,7.24336e-13,5.24877e-13,3.78815e-13,2.74174e-13,1.97486e-13,1.42036e-13,1.01795e-13,7.27046e-14 GT:GQ:SQ:GL:DP:RO:AO:QR:QA:RS:AS:ASC:RP:AP:AB 1/1:31:589.72:-60,-4,-1:151:100:51:100:50:62:0:6:38:44:0.33 1/1:26:443.27:-45,-4,-1:108:70:37:70:37:42:0:4:28:32:0.35
1 797367 7788_1 N N]8:245671] 32.57 . SVTYPE=BND;STRANDS=++:8;IMPRECISE;CIPOS=-30,475;CIEND=-30,299;CIPOS95=-6,108;CIEND95=-10,45;MATEID=7788_2;EVENT=7788;SU=8;PE=8;SR=0;PRPOS=3.40194e-09,8.52338e-09,2.13545e-08,3.93566e-08,7.25118e-08,1.33602e-07,2.46122e-07,4.53415e-07,8.3527e-07,1.53859e-06,2.83406e-06,5.21967e-06,9.61306e-06,1.77029e-05,3.25998e-05,6.00286e-05,0.000110523,0.000203462,0.000374571,0.000507267,0.000686752,0.000929708,0.00125832,0.00170319,0.00230499,0.00311912,0.0042206,0.00571008,0.0077251,0.0104508,0.0141381,0.0140654,0.013991,0.0139158,0.0138395,0.0137631,0.0136843,0.0136043,0.0135242,0.0134441,0.0133609,0.0132769,0.0131917,0.0131085,0.0130202,0.012931,0.0128429,0.0127532,0.0126619,0.0125692,0.0124755,0.0123801,0.0122852,0.012189,0.0120912,0.0119925,0.011892,0.0117914,0.0116877,0.011584,0.0114786,0.0113729,0.0112643,0.0111565,0.0110482,0.0109366,0.0108238,0.0107115,0.0105979,0.0104828,0.0103672,0.0102494,0.0101319,0.0100134,0.00989359,0.00977444,0.00965116,0.00952911,0.00940449,0.00927841,0.00915313,0.00902761,0.00890186,0.00877306,0.00864257,0.00851279,0.00838068,0.00825007,0.00811778,0.00798544,0.00785308,0.0077201,0.0075873,0.00745325,0.00731924,0.0071853,0.00705001,0.00691772,0.00678427,0.00664992,0.0065159,0.00638216,0.00625013,0.00611832,0.00598417,0.00585198,0.00571916,0.00558924,0.00545833,0.00532843,0.00520086,0.00507299,0.00494677,0.00482055,0.00469583,0.00457305,0.0044504,0.00432934,0.0042095,0.00409169,0.00397399,0.00385943,0.00374606,0.00363439,0.00352232,0.00341312,0.00330564,0.00319911,0.00309621,0.002994,0.00289269,0.00279329,0.00269685,0.00260291,0.00250963,0.00241844,0.00232984,0.00224386,0.00215878,0.00207638,0.00199522,0.00191767,0.00184219,0.00176778,0.00169524,0.00162485,0.00155691,0.00149052,0.00142671,0.00136481,0.00130429,0.00124584,0.00118899,0.00113471,0.00108207,0.00103127,0.000982064,0.000934743,0.000889467,0.000845695,0.00080312,0.000762821,0.000723665,0.000686406,0.000650583,0.000616136,0.000583346,0.000551744,0.000521798,0.000493197,0.000465636,0.000439516,0.000414552,0.00039094,0.000368273,0.000346808,0.000326219,0.000306759,0.000288305,0.000270654,0.000254041,0.000238291,0.00022338,0.000209396,0.000195948,0.000183283,0.000171478,0.000160213,0.000149701,0.00013981,0.000130362,0.000121592,0.000113259,0.000105478,9.81771e-05,9.1313e-05,8.49236e-05,7.89023e-05,7.33069e-05,6.80446e-05,6.31185e-05,5.85182e-05,5.41779e-05,5.01608e-05,4.639e-05,4.28952e-05,3.96451e-05,3.66279e-05,3.38161e-05,3.11956e-05,2.87506e-05,2.64821e-05,2.43854e-05,2.2446e-05,2.06393e-05,1.89756e-05,1.74293e-05,1.60121e-05,1.4704e-05,1.34844e-05,1.23619e-05,1.13268e-05,1.03742e-05,9.50319e-06,8.69251e-06,7.95218e-06,7.26676e-06,6.63839e-06,6.0596e-06,5.52733e-06,5.04042e-06,4.59185e-06,4.18575e-06,3.81079e-06,3.46728e-06,3.14996e-06,2.86232e-06,2.59917e-06,2.35856e-06,2.14015e-06,1.93966e-06,1.75858e-06,1.59308e-06,1.44292e-06,1.30711e-06,1.18218e-06,1.06859e-06,9.65742e-07,8.7225e-07,7.87163e-07,7.09883e-07,6.39129e-07,5.76278e-07,5.19605e-07,4.67365e-07,4.2006e-07,3.77539e-07,3.39159e-07,3.0442e-07,2.73099e-07,2.44747e-07,2.19619e-07,1.96833e-07,1.76398e-07,1.58006e-07,1.4137e-07,1.26518e-07,1.1318e-07,1.01121e-07,9.02989e-08,8.05895e-08,7.18942e-08,6.42236e-08,5.72444e-08,5.10303e-08,4.5467e-08,4.04745e-08,3.60326e-08,3.20518e-08,2.84905e-08,2.52897e-08,2.24578e-08,1.99132e-08,1.76935e-08,1.5704e-08,1.39205e-08,1.23327e-08,1.09142e-08,9.65686e-09,8.54968e-09,7.55058e-09,6.66499e-09,5.89148e-09,5.19717e-09,4.59191e-09,4.04899e-09,3.57072e-09,3.14948e-09,2.7736e-09,2.44393e-09,2.15127e-09,1.88995e-09,1.66032e-09,1.45987e-09,1.2828e-09,1.12694e-09,9.88912e-10,8.65766e-10,7.59008e-10,6.65977e-10,5.83118e-10,5.10051e-10,4.46149e-10,3.8927e-10,3.4025e-10,2.96771e-10,2.59025e-10,2.26362e-10,1.97208e-10,1.72192e-10,1.5002e-10,1.3068e-10,1.13858e-10,9.898e-11,8.6064e-11,7.47874e-11,6.49283e-11,5.64129e-11,4.89336e-11,4.25238e-11,3.68116e-11,3.18349e-11,2.75745e-11,2.3828e-11,2.06099e-11,1.77779e-11,1.53704e-11,1.3286e-11,1.1466e-11,9.89726e-12,8.55205e-12,7.37242e-12,6.35499e-12,5.47059e-12,4.70638e-12,4.04748e-12,3.48388e-12,2.9966e-12,2.57641e-12,2.21236e-12,1.89954e-12,1.62881e-12,1.39876e-12,1.19926e-12,1.02867e-12,8.78852e-13,7.51951e-13,6.44039e-13,5.50276e-13,4.70079e-13,4.01773e-13,3.42903e-13,2.92396e-13,2.49278e-13,2.12269e-13,1.8069e-13,1.54415e-13,1.31474e-13,1.11965e-13,9.50972e-14,8.0884e-14,6.87515e-14,5.84405e-14,4.97308e-14,4.22183e-14,3.56827e-14,3.03028e-14,2.56405e-14,2.17044e-14,1.83644e-14,1.5516e-14,1.30803e-14,1.10334e-14,9.32572e-15,7.89235e-15,6.66883e-15,5.61762e-15,4.74806e-15,4.00997e-15,3.38193e-15,2.8753e-15,2.41712e-15,2.05106e-15,1.72832e-15,1.45757e-15,1.2334e-15,1.03795e-15,8.74072e-16,7.35067e-16,6.18109e-16,5.21778e-16,4.3679e-16,3.65958e-16,3.06417e-16,2.56152e-16,2.14845e-16,1.80704e-16,1.50737e-16,1.26157e-16,1.05056e-16,8.80497e-17,7.4183e-17,6.18765e-17,5.16943e-17,4.31721e-17,3.61737e-17,3.02403e-17,2.5132e-17,2.0919e-17,1.74364e-17,1.45598e-17,1.21645e-17,1.00642e-17,8.32131e-18,6.90344e-18,5.70551e-18,4.72637e-18,3.91538e-18,3.23443e-18,2.66685e-18,2.20771e-18,1.81608e-18,1.49479e-18,1.23371e-18,1.02132e-18,8.37168e-19,6.84058e-19,5.65351e-19,4.67184e-19,3.85582e-19,3.16057e-19,2.58237e-19,2.13281e-19,1.75363e-19,1.45379e-19,1.18358e-19,9.71682e-20,7.91995e-20,6.46068e-20,5.31752e-20,4.33258e-20,3.5425e-20,2.87236e-20,2.32586e-20,1.89101e-20,1.53902e-20,1.243e-20,1.00788e-20,8.21541e-21,6.64075e-21,5.3754e-21,4.3554e-21,3.52456e-21,2.86812e-21,2.2899e-21,1.82711e-21,1.47183e-21,1.1804e-21,9.46638e-22,7.57247e-22,6.04021e-22,4.89154e-22,3.85469e-22,3.04767e-22,2.38166e-22,1.87484e-22,1.47167e-22,1.15718e-22,9.24216e-23,7.35419e-23,5.7097e-23,4.47208e-23,3.54089e-23,2.76939e-23,2.18737e-23,1.68239e-23,1.29203e-23,9.70516e-24,7.38968e-24,5.59404e-24,4.27278e-24,3.20318e-24,2.32851e-24,1.69875e-24,1.25483e-24,9.06581e-25,6.60947e-25,4.50583e-25,3.17865e-25,2.14182e-25,1.42531e-25,8.519e-26,5.28367e-26,3.16006e-26,1.77152e-26,8.93615e-27;PREND=1.51097e-05,1.98727e-05,2.61308e-05,3.43322e-05,4.51026e-05,5.92089e-05,7.76898e-05,0.000101895,0.000133578,0.000175087,0.000229371,0.000300312,0.000392997,0.000514139,0.000672753,0.000879449,0.00114868,0.00149998,0.00195776,0.0025544,0.00333023,0.00433897,0.00565308,0.00735735,0.0095745,0.0124496,0.0161873,0.0210296,0.0273166,0.0354597,0.0459842,0.0438533,0.041794,0.0398073,0.0378982,0.0360689,0.0342964,0.0325913,0.0309589,0.029392,0.0278956,0.0264563,0.0250869,0.0237625,0.022503,0.021301,0.0201422,0.0190417,0.0179967,0.0170026,0.0160497,0.0151416,0.0142758,0.0134549,0.0126721,0.0119244,0.0112224,0.0105532,0.00991922,0.00931272,0.00873934,0.00819887,0.00768878,0.00720477,0.00674715,0.00631773,0.00590713,0.00551889,0.00515607,0.0048173,0.00449962,0.00419916,0.00391831,0.003651,0.00340124,0.00316664,0.00294565,0.00273758,0.00254391,0.00236313,0.00219462,0.00203622,0.00188947,0.00175141,0.0016227,0.00150225,0.00139074,0.0012866,0.00119004,0.00110009,0.00101603,0.00093766,0.000864885,0.000797499,0.000735071,0.000677155,0.000623355,0.000573285,0.000527442,0.000484966,0.00044568,0.000409378,0.000375722,0.000344754,0.000316084,0.000289794,0.000265603,0.000243213,0.000222532,0.000203504,0.000186082,0.000170103,0.000155321,0.000141721,0.000129389,0.000117961,0.000107599,9.81063e-05,8.94346e-05,8.14748e-05,7.41948e-05,6.75123e-05,6.14353e-05,5.58696e-05,5.07413e-05,4.60705e-05,4.18209e-05,3.79127e-05,3.4377e-05,3.11683e-05,2.82482e-05,2.55686e-05,2.31399e-05,2.09318e-05,1.89058e-05,1.7104e-05,1.54509e-05,1.39266e-05,1.25606e-05,1.1336e-05,1.02305e-05,9.22431e-06,8.30559e-06,7.48489e-06,6.72803e-06,6.05401e-06,5.44784e-06,4.89794e-06,4.40341e-06,3.95258e-06,3.55055e-06,3.18854e-06,2.85947e-06,2.56569e-06,2.29834e-06,2.05905e-06,1.84435e-06,1.64847e-06,1.47559e-06,1.3183e-06,1.17871e-06,1.05282e-06,9.3889e-07,8.3667e-07,7.45633e-07,6.66862e-07,5.95322e-07,5.30247e-07,4.72565e-07,4.21302e-07,3.75127e-07,3.33275e-07,2.97013e-07,2.63832e-07,2.3446e-07,2.08542e-07,1.85477e-07,1.64727e-07,1.45975e-07,1.29278e-07,1.14467e-07,1.01438e-07,8.96676e-08,7.93028e-08,7.02331e-08,6.20727e-08,5.48753e-08,4.83668e-08,4.25655e-08,3.75353e-08,3.30517e-08,2.9127e-08,2.56324e-08,2.26175e-08,1.99164e-08,1.75139e-08,1.54151e-08,1.35146e-08,1.18773e-08,1.04195e-08,9.14725e-09,8.00677e-09,7.01294e-09,6.14146e-09,5.36795e-09,4.6972e-09,4.11753e-09,3.58999e-09,3.14122e-09,2.73813e-09,2.39878e-09,2.09204e-09,1.8263e-09,1.5928e-09,1.38808e-09,1.20897e-09,1.05231e-09,9.14281e-10,7.94149e-10,6.8796e-10,5.98499e-10,5.20416e-10,4.5108e-10,3.90305e-10,3.38016e-10,2.92681e-10,2.52991e-10,2.18864e-10,1.88663e-10,1.62989e-10,1.40931e-10,1.21871e-10,1.04927e-10,9.06799e-11,7.78998e-11,6.71617e-11,5.77124e-11,4.93746e-11,4.25209e-11,3.64132e-11,3.12338e-11,2.69337e-11,2.31287e-11,1.97822e-11,1.69474e-11,1.45654e-11,1.25148e-11,1.07257e-11,9.17058e-12,7.80834e-12,6.69235e-12,5.69007e-12,4.87882e-12,4.15601e-12,3.52643e-12,2.99819e-12,2.54206e-12,2.16207e-12,1.82342e-12,1.54699e-12,1.31569e-12,1.11492e-12,9.45164e-13,8.0331e-13,6.85005e-13,5.78693e-13,4.89824e-13,4.11929e-13,3.49458e-13,2.96155e-13,2.50334e-13,2.13238e-13,1.79369e-13,1.50539e-13,1.26952e-13,1.07519e-13,9.09029e-14,7.69179e-14,6.44076e-14,5.42686e-14,4.51622e-14,3.80647e-14,3.17566e-14,2.65894e-14,2.20919e-14,1.81452e-14,1.5177e-14,1.2752e-14,1.06007e-14,8.86643e-15,7.2932e-15,6.0828e-15,5.02882e-15,4.18958e-15,3.48815e-15,2.89353e-15,2.39063e-15,1.99439e-15,1.64686e-15,1.35939e-15,1.11582e-15,9.13906e-16,7.37777e-16,6.00414e-16,4.97948e-16,4.1115e-16,3.37493e-16,2.75294e-16,2.21336e-16,1.77212e-16,1.44164e-16,1.17241e-16,9.33424e-17,7.46921e-17,6.024e-17,4.75965e-17,3.73015e-17,2.90887e-17,2.33518e-17,1.72994e-17,1.32877e-17,9.94233e-18,7.6282e-18,5.62118e-18,4.22281e-18,3.14991e-18,2.16808e-18,1.4853e-18,1.05818e-18,6.2077e-19 GT:GQ:SQ:GL:DP:RO:AO:QR:QA:RS:AS:ASC:RP:AP:AB 0/0:24:0.02:-8,-11,-47:59:53:5:53:5:0:0:0:53:5:0.086 0/1:32:32.56:-14,-11,-51:69:61:8:61:8:0:0:0:61:8:0.12
1 869460 2 N 2056.2 . SVTYPE=DEL;SVLEN=-760;END=870220;STRANDS=+-:61;IMPRECISE;CIPOS=-18,111;CIEND=-101,26;CIPOS95=-4,17;CIEND95=-15,10;SU=61;PE=61;SR=0;PRPOS=1.31986e-14,1.37822e-13,1.43784e-12,1.49691e-11,1.14551e-10,8.77037e-10,6.69041e-09,5.10263e-08,3.88357e-07,2.95367e-06,2.2422e-05,0.000125019,0.00069637,0.00284383,0.0116165,0.0349091,0.0566158,0.0916043,0.108828,0.0949386,0.082732,0.0718523,0.062384,0.054139,0.0468249,0.0403757,0.0348396,0.0300103,0.0258086,0.0222461,0.0190663,0.0163698,0.0140041,0.0119796,0.0102346,0.00870183,0.00740467,0.00627598,0.00531017,0.00449351,0.00379095,0.00319049,0.00268131,0.00224343,0.00188044,0.00156778,0.00130498,0.0010826,0.000896414,0.000741879,0.000616549,0.000508557,0.000418242,0.0003436,0.000280715,0.000229879,0.000187305,0.000152465,0.000123859,0.000100522,8.11205e-05,6.53056e-05,5.2289e-05,4.19371e-05,3.3531e-05,2.68787e-05,2.14214e-05,1.70333e-05,1.34909e-05,1.06521e-05,8.38921e-06,6.57433e-06,5.14456e-06,4.02614e-06,3.13623e-06,2.41897e-06,1.87358e-06,1.45247e-06,1.12023e-06,8.57172e-07,6.55682e-07,5.04697e-07,3.85879e-07,2.9362e-07,2.21661e-07,1.67363e-07,1.26198e-07,9.49896e-08,7.17494e-08,5.34621e-08,3.98596e-08,2.95274e-08,2.17888e-08,1.60655e-08,1.18313e-08,8.64426e-09,6.30953e-09,4.59528e-09,3.33767e-09,2.42318e-09,1.75449e-09,1.26697e-09,9.08152e-10,6.45887e-10,4.56398e-10,3.2376e-10,2.27361e-10,1.60819e-10,1.11588e-10,7.79658e-11,5.43019e-11,3.7624e-11,2.57267e-11,1.7668e-11,1.21199e-11,8.36676e-12,5.63632e-12,3.84336e-12,2.54607e-12,1.68599e-12,1.11344e-12,7.45687e-13,4.92502e-13,3.28828e-13,2.15682e-13,1.41413e-13,9.08941e-14,5.91488e-14,3.78808e-14,2.4361e-14;PREND=4.60737e-14,7.19799e-14,1.12077e-13,1.73507e-13,2.6821e-13,4.12545e-13,6.3184e-13,9.64106e-13,1.4677e-12,2.22366e-12,3.35741e-12,5.05355e-12,7.57168e-12,1.13243e-11,1.6842e-11,2.49743e-11,3.69556e-11,5.44548e-11,7.98818e-11,1.16746e-10,1.70184e-10,2.46913e-10,3.56972e-10,5.14216e-10,7.39473e-10,1.05718e-09,1.50565e-09,2.13898e-09,3.0308e-09,4.27876e-09,6.02233e-09,8.44631e-09,1.17885e-08,1.64319e-08,2.28208e-08,3.15694e-08,4.35641e-08,5.98823e-08,8.20875e-08,1.12055e-07,1.52305e-07,2.06604e-07,2.79048e-07,3.76002e-07,5.05062e-07,6.75531e-07,9.02087e-07,1.19976e-06,1.59157e-06,2.1041e-06,2.76923e-06,3.63847e-06,4.76052e-06,6.21215e-06,8.08326e-06,1.04811e-05,1.35503e-05,1.74801e-05,2.24928e-05,2.88403e-05,3.68563e-05,4.69514e-05,5.96577e-05,7.55884e-05,9.54794e-05,0.000120293,0.000151046,0.00018918,0.000236422,0.000294463,0.000365498,0.000452972,0.000559839,0.000689809,0.000847732,0.00103882,0.00126948,0.00154732,0.00188009,0.00228117,0.00276366,0.00333767,0.00401857,0.00482486,0.00577899,0.00691103,0.00822528,0.00978753,0.0116215,0.0137734,0.0162695,0.019171,0.0225454,0.0264376,0.0309799,0.036216,0.0422147,0.0491041,0.0570297,0.0660589,0.0763682,0.0880333,0.0746218,0.0631276,0.053254,0.0448335,0.0377067,0.0316314,0.0264869,0.0221389,0.0184674,0.00831698,0.00373874,0.00123381,0.000406647,0.000133847,4.39589e-05,1.44072e-05,4.71848e-06,1.54215e-06,5.02946e-07,1.6383e-07,5.32298e-08,1.72667e-08,2.22799e-09,2.86884e-10,2.71347e-11,2.56334e-12 GT:GQ:SQ:GL:DP:RO:AO:QR:QA:RS:AS:ASC:RP:AP:AB 1/1:37:1140.83:-116,-5,-2:53:10:42:10:42:0:0:0:10:42:0.81 1/1:60:915.37:-92,-7,-1:36:3:32:3:32:0:0:0:3:32:0.91
1 964059 3 N 826.29 . SVTYPE=DEL;SVLEN=-340;END=964399;STRANDS=+-:20;IMPRECISE;CIPOS=-30,171;CIEND=-209,29;CIPOS95=-11,32;CIEND95=-48,7;SU=20;PE=20;SR=0;PRPOS=3.61106e-05,4.66729e-05,6.02981e-05,7.78539e-05,0.000100481,0.000129639,0.000167062,0.000215257,0.000277192,0.00035679,0.000458608,0.000589227,0.00075664,0.000970731,0.00124407,0.00159454,0.00204296,0.00261554,0.00334597,0.00427642,0.00546024,0.00696686,0.00888233,0.0113145,0.0144067,0.0183375,0.0233164,0.0296284,0.0376085,0.0477122,0.0604526,0.0563113,0.0523875,0.0486893,0.0452281,0.041999,0.0389695,0.0361282,0.0334354,0.0309115,0.02857,0.0263772,0.0243075,0.0223703,0.0205846,0.0189293,0.0173873,0.0159454,0.0146267,0.0133985,0.012263,0.0112061,0.0102394,0.00934207,0.00851479,0.00775363,0.00705806,0.00640929,0.00581269,0.00527062,0.00477338,0.00431991,0.00390043,0.00352146,0.00317477,0.00286113,0.00257442,0.00231201,0.00207554,0.0018617,0.00166857,0.00149244,0.00133342,0.00119066,0.00106043,0.000944263,0.000840312,0.000746775,0.000662406,0.000587143,0.000519463,0.000459205,0.000406039,0.000358416,0.000315438,0.000277597,0.000244038,0.000214595,0.000188015,0.000164435,0.000143767,0.000125408,0.000109378,9.52952e-05,8.28725e-05,7.20488e-05,6.25817e-05,5.42789e-05,4.70013e-05,4.05884e-05,3.50655e-05,3.02554e-05,2.60553e-05,2.2397e-05,1.92141e-05,1.65273e-05,1.41528e-05,1.21027e-05,1.03467e-05,8.82241e-06,7.51442e-06,6.39095e-06,5.45058e-06,4.63307e-06,3.92994e-06,3.32972e-06,2.82381e-06,2.38493e-06,2.01272e-06,1.70109e-06,1.43237e-06,1.20313e-06,1.00997e-06,8.46804e-07,7.09994e-07,5.92906e-07,4.95167e-07,4.13263e-07,3.44213e-07,2.86127e-07,2.37403e-07,1.97799e-07,1.64074e-07,1.35871e-07,1.12352e-07,9.27583e-08,7.64406e-08,6.30109e-08,5.18525e-08,4.25603e-08,3.49852e-08,2.86937e-08,2.34858e-08,1.92187e-08,1.56666e-08,1.27557e-08,1.03703e-08,8.43283e-09,6.84783e-09,5.53884e-09,4.48831e-09,3.6284e-09,2.93831e-09,2.37365e-09,1.90909e-09,1.53644e-09,1.23508e-09,9.93256e-10,7.95375e-10,6.38368e-10,5.11175e-10,4.08263e-10,3.26732e-10,2.59895e-10,2.06777e-10,1.63983e-10,1.29805e-10,1.02863e-10,8.12836e-11,6.4041e-11,5.03588e-11,3.97635e-11,3.13479e-11,2.4586e-11,1.93044e-11,1.50567e-11,1.18098e-11,9.23847e-12,7.21149e-12,5.61642e-12,4.39155e-12,3.41052e-12,2.64815e-12,2.05571e-12,1.5876e-12,1.2298e-12,9.47735e-13,7.30335e-13,5.65538e-13,4.33322e-13,3.33218e-13,2.55679e-13,1.96128e-13,1.50498e-13,1.14258e-13,8.71806e-14,6.63064e-14,5.06784e-14,3.83176e-14,2.92769e-14,2.20836e-14,1.66868e-14;PREND=2.40897e-15,3.18889e-15,4.20385e-15,5.55852e-15,7.31058e-15,9.62807e-15,1.26688e-14,1.65831e-14,2.17838e-14,2.8501e-14,3.72494e-14,4.86481e-14,6.3411e-14,8.26271e-14,1.07684e-13,1.39882e-13,1.81634e-13,2.35478e-13,3.04884e-13,3.93637e-13,5.07432e-13,6.55037e-13,8.43571e-13,1.08516e-12,1.39171e-12,1.78398e-12,2.28285e-12,2.91878e-12,3.73732e-12,4.75947e-12,6.05837e-12,7.70829e-12,9.78537e-12,1.2413e-11,1.57419e-11,1.99141e-11,2.5186e-11,3.18075e-11,4.01652e-11,5.0613e-11,6.35939e-11,7.98407e-11,1.00163e-10,1.25343e-10,1.56505e-10,1.95678e-10,2.43936e-10,3.03892e-10,3.77306e-10,4.68216e-10,5.81015e-10,7.20112e-10,8.91696e-10,1.10268e-09,1.36032e-09,1.67693e-09,2.06218e-09,2.53709e-09,3.11381e-09,3.81974e-09,4.67643e-09,5.71864e-09,6.98488e-09,8.50599e-09,1.03529e-08,1.25885e-08,1.52835e-08,1.85474e-08,2.24576e-08,2.71703e-08,3.28261e-08,3.95833e-08,4.76429e-08,5.72758e-08,6.87434e-08,8.23442e-08,9.85792e-08,1.17962e-07,1.40786e-07,1.67803e-07,1.99737e-07,2.37644e-07,2.82078e-07,3.34486e-07,3.96155e-07,4.68585e-07,5.53338e-07,6.5191e-07,7.6854e-07,9.04534e-07,1.06242e-06,1.2463e-06,1.45915e-06,1.70556e-06,1.99363e-06,2.32499e-06,2.70687e-06,3.14952e-06,3.65842e-06,4.24544e-06,4.91473e-06,5.68307e-06,6.56931e-06,7.57961e-06,8.73247e-06,1.00469e-05,1.1547e-05,1.32407e-05,1.51706e-05,1.73604e-05,1.98301e-05,2.2658e-05,2.58369e-05,2.93888e-05,3.34129e-05,3.79003e-05,4.29692e-05,4.86508e-05,5.49912e-05,6.20892e-05,7.00068e-05,7.88701e-05,8.87131e-05,9.95989e-05,0.000111774,0.000125249,0.000140271,0.000156786,0.000175056,0.000195283,0.000217392,0.000241704,0.000268407,0.000297907,0.000330007,0.000365287,0.00040365,0.000445683,0.000491867,0.000541552,0.000595977,0.000655001,0.00071917,0.000788586,0.000863463,0.000944292,0.00103168,0.00112583,0.00122683,0.00133608,0.00145212,0.00157711,0.00171158,0.00185497,0.00200868,0.00217403,0.00234983,0.00253622,0.00273535,0.00294676,0.00317245,0.00340948,0.00366295,0.00393033,0.00421314,0.00451202,0.00482838,0.00515969,0.00551089,0.00587851,0.0062641,0.00667103,0.0071009,0.00754795,0.00801356,0.0085,0.00900906,0.00954067,0.0101004,0.0106784,0.0112813,0.0119079,0.0125586,0.0132366,0.0139365,0.0146688,0.0154266,0.0162085,0.0170185,0.0178625,0.0187313,0.0196163,0.0205333,0.0214774,0.0224517,0.0234501,0.0244814,0.0255425,0.0266334,0.0277395,0.0288807,0.0300405,0.0312357,0.0324526,0.0337074,0.0349849,0.0362975,0.0376414,0.0389958,0.040381,0.0307547,0.0233977,0.0177958,0.0135215,0.0102743,0.0078016,0.00592097,0.00330345,0.00184248,0.00102685,0.000572214,0.000318623,0.000177362,9.86888e-05,5.48845e-05,3.05078e-05,1.69492e-05,9.41292e-06,5.2256e-06,2.90008e-06,1.60865e-06,8.91631e-07,4.94177e-07,2.73766e-07,1.51609e-07,8.39354e-08,4.64339e-08,2.5691e-08,1.42069e-08 GT:GQ:SQ:GL:DP:RO:AO:QR:QA:RS:AS:ASC:RP:AP:AB 0/1:100:422.69:-43,-1,-11:40:21:18:21:18:0:0:0:21:18:0.46 1/1:28:403.6:-41,-3,-0:15:1:14:1:14:0:0:0:1:14:0.93

Can you tell me where is my mistake?
Thank you in advance,
Giuseppe

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.