bio-vcf 0.8.2 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +8 -2
- data/Gemfile +4 -6
- data/README.md +92 -57
- data/Rakefile +3 -41
- data/TAGS +115 -0
- data/VERSION +1 -1
- data/bin/bio-vcf +58 -70
- data/bio-vcf.gemspec +23 -75
- data/features/cli.feature +6 -1
- data/features/multisample.feature +12 -0
- data/features/step_definitions/cli-feature.rb +2 -2
- data/features/step_definitions/multisample.rb +19 -0
- data/features/step_definitions/vcf_header.rb +1 -1
- data/features/support/env.rb +0 -9
- data/lib/bio-vcf/pcows.rb +210 -0
- data/lib/bio-vcf/vcfheader.rb +28 -9
- data/lib/bio-vcf/vcfheader_line.rb +455 -160
- data/lib/bio-vcf/vcfrecord.rb +30 -15
- data/ragel/gen_vcfheaderline_parser.rl +68 -25
- data/ragel/generate.sh +4 -1
- data/template/vcf2json.erb +16 -16
- data/template/vcf2json_full_header.erb +16 -17
- data/template/vcf2json_use_meta.erb +35 -35
- data/test/data/input/gatk_exome.vcf +237 -0
- data/test/data/input/gatk_wgs.vcf +1000 -0
- data/test/data/input/test.bed +632 -0
- data/test/data/regression/eval_once-stderr.new +1 -0
- data/test/data/regression/eval_once.new +1 -0
- data/test/data/regression/eval_once.ref +1 -0
- data/test/data/regression/eval_r.info.dp-stderr.new +4 -0
- data/test/data/regression/eval_r.info.dp.new +150 -0
- data/test/data/regression/ifilter_s.dp-stderr.new +28 -0
- data/test/data/regression/ifilter_s.dp.new +31 -0
- data/test/data/regression/r.info.dp-stderr.new +4 -0
- data/test/data/regression/r.info.dp.new +147 -0
- data/test/data/regression/rewrite.info.sample-stderr.new +4 -0
- data/test/data/regression/rewrite.info.sample.new +150 -0
- data/test/data/regression/s.dp-stderr.new +12 -0
- data/test/data/regression/s.dp.new +145 -0
- data/test/data/regression/seval_s.dp-stderr.new +4 -0
- data/test/data/regression/seval_s.dp.new +36 -0
- data/test/data/regression/sfilter_seval_s.dp-stderr.new +12 -0
- data/test/data/regression/sfilter_seval_s.dp.new +31 -0
- data/test/data/regression/thread4-stderr.new +4 -0
- data/test/data/regression/thread4.new +150 -0
- data/test/data/regression/thread4_4-stderr.new +15 -0
- data/test/data/regression/thread4_4.new +150 -0
- data/test/data/regression/thread4_4_failed_filter-stderr.new +5 -0
- data/test/data/regression/thread4_4_failed_filter-stderr.ref +5 -2
- data/test/data/regression/thread4_4_failed_filter.new +110 -0
- data/test/data/regression/vcf2json_full_header-stderr.new +4 -0
- data/test/data/regression/vcf2json_full_header.new +225 -0
- data/test/data/regression/vcf2json_full_header.ref +222 -258
- data/test/data/regression/vcf2json_use_meta-stderr.new +4 -0
- data/test/data/regression/vcf2json_use_meta.new +4697 -0
- data/test/data/regression/vcf2json_use_meta.ref +4697 -0
- data/test/performance/metrics.md +18 -1
- data/test/tmp/test.vcf +12469 -0
- metadata +38 -62
- data/Gemfile.lock +0 -81
- data/ragel/gen_vcfheaderline_parser.rb +0 -483
@@ -1,2 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
Unknown field name <t> in record, did you mean r.info.t?
|
2
|
+
Unknown field name <t> in record, did you mean r.info.t?
|
3
|
+
Unknown field name <t> in record, did you mean r.info.t?
|
4
|
+
Unknown field name <t> in record, did you mean r.info.t?
|
5
|
+
execution expired
|
@@ -0,0 +1,110 @@
|
|
1
|
+
##fileformat=VCFv4.1
|
2
|
+
##FILTER=<ID=LowQual,Description="Low quality">
|
3
|
+
##FORMAT=<ID=AD,Number=.,Type=Integer,Description="Allelic depths for the ref and alt alleles in the order listed">
|
4
|
+
##FORMAT=<ID=DP,Number=1,Type=Integer,Description="Approximate read depth (reads with MQ=255 or with bad mates are filtered)">
|
5
|
+
##FORMAT=<ID=GQ,Number=1,Type=Integer,Description="Genotype Quality">
|
6
|
+
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
|
7
|
+
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification">
|
8
|
+
##INFO=<ID=AC,Number=A,Type=Integer,Description="Allele count in genotypes, for each ALT allele, in the same order as listed">
|
9
|
+
##INFO=<ID=AF,Number=A,Type=Float,Description="Allele Frequency, for each ALT allele, in the same order as listed">
|
10
|
+
##INFO=<ID=AN,Number=1,Type=Integer,Description="Total number of alleles in called genotypes">
|
11
|
+
##INFO=<ID=DP,Number=1,Type=Integer,Description="Approximate read depth; some reads may have been filtered">
|
12
|
+
##INFO=<ID=DS,Number=0,Type=Flag,Description="Were any of the samples downsampled?">
|
13
|
+
##INFO=<ID=Dels,Number=1,Type=Float,Description="Fraction of Reads Containing Spanning Deletions">
|
14
|
+
##INFO=<ID=FS,Number=1,Type=Float,Description="Phred-scaled p-value using Fisher's exact test to detect strand bias">
|
15
|
+
##INFO=<ID=HaplotypeScore,Number=1,Type=Float,Description="Consistency of the site with at most two segregating haplotypes">
|
16
|
+
##INFO=<ID=MLEAC,Number=A,Type=Integer,Description="Maximum likelihood expectation (MLE) for the allele counts (not necessarily the same as the AC), for each ALT allele, in the same order as listed">
|
17
|
+
##INFO=<ID=MLEAF,Number=A,Type=Float,Description="Maximum likelihood expectation (MLE) for the allele frequency (not necessarily the same as the AF), for each ALT allele, in the same order as listed">
|
18
|
+
##INFO=<ID=MQ,Number=1,Type=Float,Description="RMS Mapping Quality">
|
19
|
+
##INFO=<ID=MQ0,Number=1,Type=Integer,Description="Total Mapping Quality Zero Reads">
|
20
|
+
##INFO=<ID=MQRankSum,Number=1,Type=Float,Description="Z-score From Wilcoxon rank sum test of Alt vs. Ref read mapping qualities">
|
21
|
+
##INFO=<ID=QD,Number=1,Type=Float,Description="Variant Confidence/Quality by Depth">
|
22
|
+
##INFO=<ID=RPA,Number=.,Type=Integer,Description="Number of times tandem repeat unit is repeated, for each allele (including reference)">
|
23
|
+
##INFO=<ID=RU,Number=1,Type=String,Description="Tandem repeat unit (bases)">
|
24
|
+
##INFO=<ID=STR,Number=0,Type=Flag,Description="Variant is a short tandem repeat">
|
25
|
+
##contig=<ID=1,length=249250621,assembly=b37>
|
26
|
+
##contig=<ID=2,length=243199373,assembly=b37>
|
27
|
+
##contig=<ID=3,length=198022430,assembly=b37>
|
28
|
+
##contig=<ID=4,length=191154276,assembly=b37>
|
29
|
+
##contig=<ID=5,length=180915260,assembly=b37>
|
30
|
+
##contig=<ID=6,length=171115067,assembly=b37>
|
31
|
+
##contig=<ID=7,length=159138663,assembly=b37>
|
32
|
+
##contig=<ID=8,length=146364022,assembly=b37>
|
33
|
+
##contig=<ID=9,length=141213431,assembly=b37>
|
34
|
+
##contig=<ID=10,length=135534747,assembly=b37>
|
35
|
+
##contig=<ID=11,length=135006516,assembly=b37>
|
36
|
+
##contig=<ID=12,length=133851895,assembly=b37>
|
37
|
+
##contig=<ID=13,length=115169878,assembly=b37>
|
38
|
+
##contig=<ID=14,length=107349540,assembly=b37>
|
39
|
+
##contig=<ID=15,length=102531392,assembly=b37>
|
40
|
+
##contig=<ID=16,length=90354753,assembly=b37>
|
41
|
+
##contig=<ID=17,length=81195210,assembly=b37>
|
42
|
+
##contig=<ID=18,length=78077248,assembly=b37>
|
43
|
+
##contig=<ID=19,length=59128983,assembly=b37>
|
44
|
+
##contig=<ID=20,length=63025520,assembly=b37>
|
45
|
+
##contig=<ID=21,length=48129895,assembly=b37>
|
46
|
+
##contig=<ID=22,length=51304566,assembly=b37>
|
47
|
+
##contig=<ID=X,length=155270560,assembly=b37>
|
48
|
+
##contig=<ID=Y,length=59373566,assembly=b37>
|
49
|
+
##contig=<ID=MT,length=16569,assembly=b37>
|
50
|
+
##contig=<ID=GL000207.1,length=4262,assembly=b37>
|
51
|
+
##contig=<ID=GL000226.1,length=15008,assembly=b37>
|
52
|
+
##contig=<ID=GL000229.1,length=19913,assembly=b37>
|
53
|
+
##contig=<ID=GL000231.1,length=27386,assembly=b37>
|
54
|
+
##contig=<ID=GL000210.1,length=27682,assembly=b37>
|
55
|
+
##contig=<ID=GL000239.1,length=33824,assembly=b37>
|
56
|
+
##contig=<ID=GL000235.1,length=34474,assembly=b37>
|
57
|
+
##contig=<ID=GL000201.1,length=36148,assembly=b37>
|
58
|
+
##contig=<ID=GL000247.1,length=36422,assembly=b37>
|
59
|
+
##contig=<ID=GL000245.1,length=36651,assembly=b37>
|
60
|
+
##contig=<ID=GL000197.1,length=37175,assembly=b37>
|
61
|
+
##contig=<ID=GL000203.1,length=37498,assembly=b37>
|
62
|
+
##contig=<ID=GL000246.1,length=38154,assembly=b37>
|
63
|
+
##contig=<ID=GL000249.1,length=38502,assembly=b37>
|
64
|
+
##contig=<ID=GL000196.1,length=38914,assembly=b37>
|
65
|
+
##contig=<ID=GL000248.1,length=39786,assembly=b37>
|
66
|
+
##contig=<ID=GL000244.1,length=39929,assembly=b37>
|
67
|
+
##contig=<ID=GL000238.1,length=39939,assembly=b37>
|
68
|
+
##contig=<ID=GL000202.1,length=40103,assembly=b37>
|
69
|
+
##contig=<ID=GL000234.1,length=40531,assembly=b37>
|
70
|
+
##contig=<ID=GL000232.1,length=40652,assembly=b37>
|
71
|
+
##contig=<ID=GL000206.1,length=41001,assembly=b37>
|
72
|
+
##contig=<ID=GL000240.1,length=41933,assembly=b37>
|
73
|
+
##contig=<ID=GL000236.1,length=41934,assembly=b37>
|
74
|
+
##contig=<ID=GL000241.1,length=42152,assembly=b37>
|
75
|
+
##contig=<ID=GL000243.1,length=43341,assembly=b37>
|
76
|
+
##contig=<ID=GL000242.1,length=43523,assembly=b37>
|
77
|
+
##contig=<ID=GL000230.1,length=43691,assembly=b37>
|
78
|
+
##contig=<ID=GL000237.1,length=45867,assembly=b37>
|
79
|
+
##contig=<ID=GL000233.1,length=45941,assembly=b37>
|
80
|
+
##contig=<ID=GL000204.1,length=81310,assembly=b37>
|
81
|
+
##contig=<ID=GL000198.1,length=90085,assembly=b37>
|
82
|
+
##contig=<ID=GL000208.1,length=92689,assembly=b37>
|
83
|
+
##contig=<ID=GL000191.1,length=106433,assembly=b37>
|
84
|
+
##contig=<ID=GL000227.1,length=128374,assembly=b37>
|
85
|
+
##contig=<ID=GL000228.1,length=129120,assembly=b37>
|
86
|
+
##contig=<ID=GL000214.1,length=137718,assembly=b37>
|
87
|
+
##contig=<ID=GL000221.1,length=155397,assembly=b37>
|
88
|
+
##contig=<ID=GL000209.1,length=159169,assembly=b37>
|
89
|
+
##contig=<ID=GL000218.1,length=161147,assembly=b37>
|
90
|
+
##contig=<ID=GL000220.1,length=161802,assembly=b37>
|
91
|
+
##contig=<ID=GL000213.1,length=164239,assembly=b37>
|
92
|
+
##contig=<ID=GL000211.1,length=166566,assembly=b37>
|
93
|
+
##contig=<ID=GL000199.1,length=169874,assembly=b37>
|
94
|
+
##contig=<ID=GL000217.1,length=172149,assembly=b37>
|
95
|
+
##contig=<ID=GL000216.1,length=172294,assembly=b37>
|
96
|
+
##contig=<ID=GL000215.1,length=172545,assembly=b37>
|
97
|
+
##contig=<ID=GL000205.1,length=174588,assembly=b37>
|
98
|
+
##contig=<ID=GL000219.1,length=179198,assembly=b37>
|
99
|
+
##contig=<ID=GL000224.1,length=179693,assembly=b37>
|
100
|
+
##contig=<ID=GL000223.1,length=180455,assembly=b37>
|
101
|
+
##contig=<ID=GL000195.1,length=182896,assembly=b37>
|
102
|
+
##contig=<ID=GL000212.1,length=186858,assembly=b37>
|
103
|
+
##contig=<ID=GL000222.1,length=186861,assembly=b37>
|
104
|
+
##contig=<ID=GL000200.1,length=187035,assembly=b37>
|
105
|
+
##contig=<ID=GL000193.1,length=189789,assembly=b37>
|
106
|
+
##contig=<ID=GL000194.1,length=191469,assembly=b37>
|
107
|
+
##contig=<ID=GL000225.1,length=211173,assembly=b37>
|
108
|
+
##contig=<ID=GL000192.1,length=547496,assembly=b37>
|
109
|
+
##reference=file:human_g1k_v37.fasta
|
110
|
+
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Original s1t1 s2t1 s3t1 s1t2 s2t2 s3t2
|
@@ -0,0 +1,225 @@
|
|
1
|
+
|
2
|
+
{
|
3
|
+
"HEADER": {
|
4
|
+
"files": [],
|
5
|
+
},
|
6
|
+
"COLUMNS": ["CHROM","POS","ID","REF","ALT","QUAL","FILTER","INFO","FORMAT","Original","s1t1","s2t1","s3t1","s1t2","s2t2","s3t2"],
|
7
|
+
"META": {"INFO":{"AC":{"ID":"AC","Number":"A","Type":"Integer","Description":"Allele count in genotypes, for each ALT allele, in the same order as listed"},"AF":{"ID":"AF","Number":"A","Type":"Float","Description":"Allele Frequency, for each ALT allele, in the same order as listed"},"AN":{"ID":"AN","Number":"1","Type":"Integer","Description":"Total number of alleles in called genotypes"},"BaseQRankSum":{"ID":"BaseQRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt Vs. Ref base qualities"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth; some reads may have been filtered"},"DS":{"ID":"DS","Number":"0","Type":"Flag","Description":"Were any of the samples downsampled?"},"Dels":{"ID":"Dels","Number":"1","Type":"Float","Description":"Fraction of Reads Containing Spanning Deletions"},"FS":{"ID":"FS","Number":"1","Type":"Float","Description":"Phred-scaled p-value using Fisher's exact test to detect strand bias"},"HaplotypeScore":{"ID":"HaplotypeScore","Number":"1","Type":"Float","Description":"Consistency of the site with at most two segregating haplotypes"},"InbreedingCoeff":{"ID":"InbreedingCoeff","Number":"1","Type":"Float","Description":"Inbreeding coefficient as estimated from the genotype likelihoods per-sample when compared against the Hardy-Weinberg expectation"},"MLEAC":{"ID":"MLEAC","Number":"A","Type":"Integer","Description":"Maximum likelihood expectation (MLE) for the allele counts (not necessarily the same as the AC), for each ALT allele, in the same order as listed"},"MLEAF":{"ID":"MLEAF","Number":"A","Type":"Float","Description":"Maximum likelihood expectation (MLE) for the allele frequency (not necessarily the same as the AF), for each ALT allele, in the same order as listed"},"MQ":{"ID":"MQ","Number":"1","Type":"Float","Description":"RMS Mapping Quality"},"MQ0":{"ID":"MQ0","Number":"1","Type":"Integer","Description":"Total Mapping Quality Zero Reads"},"MQRankSum":{"ID":"MQRankSum","Number":"1","Type":"Float","Description":"Z-score From Wilcoxon rank sum test of Alt vs. Ref read mapping qualities"},"QD":{"ID":"QD","Number":"1","Type":"Float","Description":"Variant Confidence/Quality by Depth"},"RPA":{"ID":"RPA","Number":".","Type":"Integer","Description":"Number of times tandem repeat unit is repeated, for each allele (including reference)"},"RU":{"ID":"RU","Number":"1","Type":"String","Description":"Tandem repeat unit (bases)"},"ReadPosRankSum":{"ID":"ReadPosRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt vs. Ref read position bias"},"STR":{"ID":"STR","Number":"0","Type":"Flag","Description":"Variant is a short tandem repeat"}},"FORMAT":{"AD":{"ID":"AD","Number":".","Type":"Integer","Description":"Allelic depths for the ref and alt alleles in the order listed"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth (reads with MQ=255 or with bad mates are filtered)"},"GQ":{"ID":"GQ","Number":"1","Type":"Integer","Description":"Genotype Quality"},"GT":{"ID":"GT","Number":"1","Type":"String","Description":"Genotype"},"PL":{"ID":"PL","Number":"G","Type":"Integer","Description":"Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification"}},"FILTER":{"LowQual":{"ID":"LowQual","Description":"Low quality"}},"contig":{"1":{"ID":"1","length":249250621,"assembly":"b37"},"2":{"ID":"2","length":243199373,"assembly":"b37"},"3":{"ID":"3","length":198022430,"assembly":"b37"},"4":{"ID":"4","length":191154276,"assembly":"b37"},"5":{"ID":"5","length":180915260,"assembly":"b37"},"6":{"ID":"6","length":171115067,"assembly":"b37"},"7":{"ID":"7","length":159138663,"assembly":"b37"},"8":{"ID":"8","length":146364022,"assembly":"b37"},"9":{"ID":"9","length":141213431,"assembly":"b37"},"10":{"ID":"10","length":135534747,"assembly":"b37"},"11":{"ID":"11","length":135006516,"assembly":"b37"},"12":{"ID":"12","length":133851895,"assembly":"b37"},"13":{"ID":"13","length":115169878,"assembly":"b37"},"14":{"ID":"14","length":107349540,"assembly":"b37"},"15":{"ID":"15","length":102531392,"assembly":"b37"},"16":{"ID":"16","length":90354753,"assembly":"b37"},"17":{"ID":"17","length":81195210,"assembly":"b37"},"18":{"ID":"18","length":78077248,"assembly":"b37"},"19":{"ID":"19","length":59128983,"assembly":"b37"},"20":{"ID":"20","length":63025520,"assembly":"b37"},"21":{"ID":"21","length":48129895,"assembly":"b37"},"22":{"ID":"22","length":51304566,"assembly":"b37"},"X":{"ID":"X","length":155270560,"assembly":"b37"},"Y":{"ID":"Y","length":59373566,"assembly":"b37"},"MT":{"ID":"MT","length":16569,"assembly":"b37"},"GL000207.1":{"ID":"GL000207.1","length":4262,"assembly":"b37"},"GL000226.1":{"ID":"GL000226.1","length":15008,"assembly":"b37"},"GL000229.1":{"ID":"GL000229.1","length":19913,"assembly":"b37"},"GL000231.1":{"ID":"GL000231.1","length":27386,"assembly":"b37"},"GL000210.1":{"ID":"GL000210.1","length":27682,"assembly":"b37"},"GL000239.1":{"ID":"GL000239.1","length":33824,"assembly":"b37"},"GL000235.1":{"ID":"GL000235.1","length":34474,"assembly":"b37"},"GL000201.1":{"ID":"GL000201.1","length":36148,"assembly":"b37"},"GL000247.1":{"ID":"GL000247.1","length":36422,"assembly":"b37"},"GL000245.1":{"ID":"GL000245.1","length":36651,"assembly":"b37"},"GL000197.1":{"ID":"GL000197.1","length":37175,"assembly":"b37"},"GL000203.1":{"ID":"GL000203.1","length":37498,"assembly":"b37"},"GL000246.1":{"ID":"GL000246.1","length":38154,"assembly":"b37"},"GL000249.1":{"ID":"GL000249.1","length":38502,"assembly":"b37"},"GL000196.1":{"ID":"GL000196.1","length":38914,"assembly":"b37"},"GL000248.1":{"ID":"GL000248.1","length":39786,"assembly":"b37"},"GL000244.1":{"ID":"GL000244.1","length":39929,"assembly":"b37"},"GL000238.1":{"ID":"GL000238.1","length":39939,"assembly":"b37"},"GL000202.1":{"ID":"GL000202.1","length":40103,"assembly":"b37"},"GL000234.1":{"ID":"GL000234.1","length":40531,"assembly":"b37"},"GL000232.1":{"ID":"GL000232.1","length":40652,"assembly":"b37"},"GL000206.1":{"ID":"GL000206.1","length":41001,"assembly":"b37"},"GL000240.1":{"ID":"GL000240.1","length":41933,"assembly":"b37"},"GL000236.1":{"ID":"GL000236.1","length":41934,"assembly":"b37"},"GL000241.1":{"ID":"GL000241.1","length":42152,"assembly":"b37"},"GL000243.1":{"ID":"GL000243.1","length":43341,"assembly":"b37"},"GL000242.1":{"ID":"GL000242.1","length":43523,"assembly":"b37"},"GL000230.1":{"ID":"GL000230.1","length":43691,"assembly":"b37"},"GL000237.1":{"ID":"GL000237.1","length":45867,"assembly":"b37"},"GL000233.1":{"ID":"GL000233.1","length":45941,"assembly":"b37"},"GL000204.1":{"ID":"GL000204.1","length":81310,"assembly":"b37"},"GL000198.1":{"ID":"GL000198.1","length":90085,"assembly":"b37"},"GL000208.1":{"ID":"GL000208.1","length":92689,"assembly":"b37"},"GL000191.1":{"ID":"GL000191.1","length":106433,"assembly":"b37"},"GL000227.1":{"ID":"GL000227.1","length":128374,"assembly":"b37"},"GL000228.1":{"ID":"GL000228.1","length":129120,"assembly":"b37"},"GL000214.1":{"ID":"GL000214.1","length":137718,"assembly":"b37"},"GL000221.1":{"ID":"GL000221.1","length":155397,"assembly":"b37"},"GL000209.1":{"ID":"GL000209.1","length":159169,"assembly":"b37"},"GL000218.1":{"ID":"GL000218.1","length":161147,"assembly":"b37"},"GL000220.1":{"ID":"GL000220.1","length":161802,"assembly":"b37"},"GL000213.1":{"ID":"GL000213.1","length":164239,"assembly":"b37"},"GL000211.1":{"ID":"GL000211.1","length":166566,"assembly":"b37"},"GL000199.1":{"ID":"GL000199.1","length":169874,"assembly":"b37"},"GL000217.1":{"ID":"GL000217.1","length":172149,"assembly":"b37"},"GL000216.1":{"ID":"GL000216.1","length":172294,"assembly":"b37"},"GL000215.1":{"ID":"GL000215.1","length":172545,"assembly":"b37"},"GL000205.1":{"ID":"GL000205.1","length":174588,"assembly":"b37"},"GL000219.1":{"ID":"GL000219.1","length":179198,"assembly":"b37"},"GL000224.1":{"ID":"GL000224.1","length":179693,"assembly":"b37"},"GL000223.1":{"ID":"GL000223.1","length":180455,"assembly":"b37"},"GL000195.1":{"ID":"GL000195.1","length":182896,"assembly":"b37"},"GL000212.1":{"ID":"GL000212.1","length":186858,"assembly":"b37"},"GL000222.1":{"ID":"GL000222.1","length":186861,"assembly":"b37"},"GL000200.1":{"ID":"GL000200.1","length":187035,"assembly":"b37"},"GL000193.1":{"ID":"GL000193.1","length":189789,"assembly":"b37"},"GL000194.1":{"ID":"GL000194.1","length":191469,"assembly":"b37"},"GL000225.1":{"ID":"GL000225.1","length":211173,"assembly":"b37"},"GL000192.1":{"ID":"GL000192.1","length":547496,"assembly":"b37"}},"GATKCommandLine":{"UnifiedGenotyper":{"ID":"UnifiedGenotyper","Version":"2.8-1-g932cd3a","Date":"Sat Jan 25 10:33:56 CET 2014","Epoch":1390642436187,"CommandLineOptions":"analysis_type=UnifiedGenotyper input_file=[/data_fedor12/BAM/sander/Liver_clones/BIOPSY17513D/mapping/BIOPSY17513D_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone3/mapping/clone3_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone4/mapping/clone4_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone10/mapping/clone10_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone33/mapping/subclone33_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone46/mapping/subclone46_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone105/mapping/subclone105_dedup_realigned_recalibrated.bam] read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=[/data_fedor13/sander/variant_calling/Liver_clones/.queue/scatterGather/UnifiedGenotyper_noref-1-sg/temp_001_of_500/scatter.intervals] excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/data_fedor13/common_data/references/H_sapiens/GATK_b37_bundle_reference/basespace/human_g1k_v37.fasta nonDeterministicRandomSeed=false disableDithering=false maxRuntime=-1 maxRuntimeUnits=MINUTES downsampling_type=BY_SAMPLE downsample_to_fraction=null downsample_to_coverage=250 baq=OFF baqGapOpenPenalty=40.0 fix_misencoded_quality_scores=false allow_potentially_misencoded_quality_scores=false useOriginalQualities=false defaultBaseQualities=-1 performanceLog=null BQSR=null quantize_quals=0 disable_indel_quals=false emit_original_quals=false preserve_qscores_less_than=6 globalQScorePrior=-1.0 allow_bqsr_on_reduced_bams_despite_repeated_warnings=false validation_strictness=SILENT remove_program_records=false keep_program_records=false sample_rename_mapping_file=null unsafe=null disable_auto_index_creation_and_locking_when_reading_rods=false num_threads=1 num_cpu_threads_per_data_thread=1 num_io_threads=0 monitorThreadEfficiency=false num_bam_file_handles=null read_group_black_list=null pedigree=[] pedigreeString=[] pedigreeValidationType=STRICT allow_intervals_with_unindexed_bam=false generateShadowBCF=false variant_index_type=DYNAMIC_SEEK variant_index_parameter=-1 logging_level=INFO log_to_file=null help=false version=false genotype_likelihoods_model=SNP pcr_error_rate=1.0E-4 computeSLOD=false annotateNDA=false pair_hmm_implementation=LOGLESS_CACHING min_base_quality_score=17 max_deletion_fraction=0.05 allSitePLs=false min_indel_count_for_genotyping=5 min_indel_fraction_per_sample=0.25 indelGapContinuationPenalty=10 indelGapOpenPenalty=45 indelHaplotypeSize=80 indelDebug=false ignoreSNPAlleles=false allReadsSP=false ignoreLaneInfo=false reference_sample_calls=(RodBinding name= source=UNBOUND) reference_sample_name=null sample_ploidy=2 min_quality_score=1 max_quality_score=40 site_quality_prior=20 min_power_threshold_for_calling=0.95 min_reference_depth=100 exclude_filtered_reference_sites=false output_mode=EMIT_VARIANTS_ONLY heterozygosity=0.001 indel_heterozygosity=1.25E-4 genotyping_mode=DISCOVERY standard_min_confidence_threshold_for_calling=30.0 standard_min_confidence_threshold_for_emitting=30.0 alleles=(RodBinding name= source=UNBOUND) max_alternate_alleles=6 input_prior=[] contamination_fraction_to_filter=0.0 contamination_fraction_per_sample_file=null p_nonref_model=EXACT_INDEPENDENT exactcallslog=null dbsnp=(RodBinding name= source=UNBOUND) comp=[] out=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub onlyEmitSamples=[] debug_file=null metrics_file=null annotation=[] excludeAnnotation=[] filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false"}},"fileformat":"VCFv4.1","reference":"file:human_g1k_v37.fasta"},
|
8
|
+
"BODY": [ {
|
9
|
+
"seq:chr": "1" ,
|
10
|
+
"seq:pos": 10257 ,
|
11
|
+
"seq:ref": "A" ,
|
12
|
+
"seq:alt": "C"
|
13
|
+
, "dp": 1518
|
14
|
+
}, {
|
15
|
+
"seq:chr": "1" ,
|
16
|
+
"seq:pos": 10291 ,
|
17
|
+
"seq:ref": "C" ,
|
18
|
+
"seq:alt": "T"
|
19
|
+
, "dp": 1433
|
20
|
+
}, {
|
21
|
+
"seq:chr": "1" ,
|
22
|
+
"seq:pos": 10297 ,
|
23
|
+
"seq:ref": "C" ,
|
24
|
+
"seq:alt": "T"
|
25
|
+
, "dp": 1440
|
26
|
+
}, {
|
27
|
+
"seq:chr": "1" ,
|
28
|
+
"seq:pos": 10303 ,
|
29
|
+
"seq:ref": "C" ,
|
30
|
+
"seq:alt": "T"
|
31
|
+
, "dp": 1460
|
32
|
+
}, {
|
33
|
+
"seq:chr": "1" ,
|
34
|
+
"seq:pos": 10315 ,
|
35
|
+
"seq:ref": "C" ,
|
36
|
+
"seq:alt": "T"
|
37
|
+
, "dp": 1500
|
38
|
+
}, {
|
39
|
+
"seq:chr": "1" ,
|
40
|
+
"seq:pos": 10321 ,
|
41
|
+
"seq:ref": "C" ,
|
42
|
+
"seq:alt": "T"
|
43
|
+
, "dp": 1537
|
44
|
+
}, {
|
45
|
+
"seq:chr": "1" ,
|
46
|
+
"seq:pos": 10327 ,
|
47
|
+
"seq:ref": "T" ,
|
48
|
+
"seq:alt": "C"
|
49
|
+
, "dp": 1641
|
50
|
+
}, {
|
51
|
+
"seq:chr": "1" ,
|
52
|
+
"seq:pos": 10583 ,
|
53
|
+
"seq:ref": "G" ,
|
54
|
+
"seq:alt": "A"
|
55
|
+
, "dp": 129
|
56
|
+
}, {
|
57
|
+
"seq:chr": "1" ,
|
58
|
+
"seq:pos": 10665 ,
|
59
|
+
"seq:ref": "C" ,
|
60
|
+
"seq:alt": "G"
|
61
|
+
, "dp": 28
|
62
|
+
}, {
|
63
|
+
"seq:chr": "1" ,
|
64
|
+
"seq:pos": 10694 ,
|
65
|
+
"seq:ref": "C" ,
|
66
|
+
"seq:alt": "G"
|
67
|
+
, "dp": 22
|
68
|
+
}, {
|
69
|
+
"seq:chr": "1" ,
|
70
|
+
"seq:pos": 10723 ,
|
71
|
+
"seq:ref": "C" ,
|
72
|
+
"seq:alt": "G"
|
73
|
+
, "dp": 18
|
74
|
+
}, {
|
75
|
+
"seq:chr": "1" ,
|
76
|
+
"seq:pos": 12783 ,
|
77
|
+
"seq:ref": "G" ,
|
78
|
+
"seq:alt": "A"
|
79
|
+
, "dp": 939
|
80
|
+
}, {
|
81
|
+
"seq:chr": "1" ,
|
82
|
+
"seq:pos": 13116 ,
|
83
|
+
"seq:ref": "T" ,
|
84
|
+
"seq:alt": "G"
|
85
|
+
, "dp": 721
|
86
|
+
}, {
|
87
|
+
"seq:chr": "1" ,
|
88
|
+
"seq:pos": 13118 ,
|
89
|
+
"seq:ref": "A" ,
|
90
|
+
"seq:alt": "G"
|
91
|
+
, "dp": 703
|
92
|
+
}, {
|
93
|
+
"seq:chr": "1" ,
|
94
|
+
"seq:pos": 13178 ,
|
95
|
+
"seq:ref": "G" ,
|
96
|
+
"seq:alt": "A"
|
97
|
+
, "dp": 929
|
98
|
+
}, {
|
99
|
+
"seq:chr": "1" ,
|
100
|
+
"seq:pos": 13302 ,
|
101
|
+
"seq:ref": "C" ,
|
102
|
+
"seq:alt": "T"
|
103
|
+
, "dp": 692
|
104
|
+
}, {
|
105
|
+
"seq:chr": "1" ,
|
106
|
+
"seq:pos": 13757 ,
|
107
|
+
"seq:ref": "G" ,
|
108
|
+
"seq:alt": "A"
|
109
|
+
, "dp": 1149
|
110
|
+
}, {
|
111
|
+
"seq:chr": "1" ,
|
112
|
+
"seq:pos": 13868 ,
|
113
|
+
"seq:ref": "A" ,
|
114
|
+
"seq:alt": "G"
|
115
|
+
, "dp": 1108
|
116
|
+
}, {
|
117
|
+
"seq:chr": "1" ,
|
118
|
+
"seq:pos": 13896 ,
|
119
|
+
"seq:ref": "C" ,
|
120
|
+
"seq:alt": "A"
|
121
|
+
, "dp": 830
|
122
|
+
}, {
|
123
|
+
"seq:chr": "1" ,
|
124
|
+
"seq:pos": 14354 ,
|
125
|
+
"seq:ref": "C" ,
|
126
|
+
"seq:alt": "A"
|
127
|
+
, "dp": 764
|
128
|
+
}, {
|
129
|
+
"seq:chr": "1" ,
|
130
|
+
"seq:pos": 14464 ,
|
131
|
+
"seq:ref": "A" ,
|
132
|
+
"seq:alt": "T"
|
133
|
+
, "dp": 809
|
134
|
+
}, {
|
135
|
+
"seq:chr": "1" ,
|
136
|
+
"seq:pos": 14673 ,
|
137
|
+
"seq:ref": "G" ,
|
138
|
+
"seq:alt": "C"
|
139
|
+
, "dp": 754
|
140
|
+
}, {
|
141
|
+
"seq:chr": "1" ,
|
142
|
+
"seq:pos": 14699 ,
|
143
|
+
"seq:ref": "C" ,
|
144
|
+
"seq:alt": "G"
|
145
|
+
, "dp": 719
|
146
|
+
}, {
|
147
|
+
"seq:chr": "1" ,
|
148
|
+
"seq:pos": 14907 ,
|
149
|
+
"seq:ref": "A" ,
|
150
|
+
"seq:alt": "G"
|
151
|
+
, "dp": 1083
|
152
|
+
}, {
|
153
|
+
"seq:chr": "1" ,
|
154
|
+
"seq:pos": 14930 ,
|
155
|
+
"seq:ref": "A" ,
|
156
|
+
"seq:alt": "G"
|
157
|
+
, "dp": 1092
|
158
|
+
}, {
|
159
|
+
"seq:chr": "1" ,
|
160
|
+
"seq:pos": 14933 ,
|
161
|
+
"seq:ref": "G" ,
|
162
|
+
"seq:alt": "A"
|
163
|
+
, "dp": 1089
|
164
|
+
}, {
|
165
|
+
"seq:chr": "1" ,
|
166
|
+
"seq:pos": 14948 ,
|
167
|
+
"seq:ref": "G" ,
|
168
|
+
"seq:alt": "A"
|
169
|
+
, "dp": 1050
|
170
|
+
}, {
|
171
|
+
"seq:chr": "1" ,
|
172
|
+
"seq:pos": 14976 ,
|
173
|
+
"seq:ref": "G" ,
|
174
|
+
"seq:alt": "A"
|
175
|
+
, "dp": 939
|
176
|
+
}, {
|
177
|
+
"seq:chr": "1" ,
|
178
|
+
"seq:pos": 15118 ,
|
179
|
+
"seq:ref": "A" ,
|
180
|
+
"seq:alt": "G"
|
181
|
+
, "dp": 1004
|
182
|
+
}, {
|
183
|
+
"seq:chr": "1" ,
|
184
|
+
"seq:pos": 15190 ,
|
185
|
+
"seq:ref": "G" ,
|
186
|
+
"seq:alt": "A"
|
187
|
+
, "dp": 1090
|
188
|
+
}, {
|
189
|
+
"seq:chr": "1" ,
|
190
|
+
"seq:pos": 15211 ,
|
191
|
+
"seq:ref": "T" ,
|
192
|
+
"seq:alt": "G"
|
193
|
+
, "dp": 992
|
194
|
+
}, {
|
195
|
+
"seq:chr": "1" ,
|
196
|
+
"seq:pos": 15274 ,
|
197
|
+
"seq:ref": "A" ,
|
198
|
+
"seq:alt": "G"
|
199
|
+
, "dp": 636
|
200
|
+
}, {
|
201
|
+
"seq:chr": "1" ,
|
202
|
+
"seq:pos": 15447 ,
|
203
|
+
"seq:ref": "A" ,
|
204
|
+
"seq:alt": "G"
|
205
|
+
, "dp": 1213
|
206
|
+
}, {
|
207
|
+
"seq:chr": "1" ,
|
208
|
+
"seq:pos": 15688 ,
|
209
|
+
"seq:ref": "C" ,
|
210
|
+
"seq:alt": "T"
|
211
|
+
, "dp": 904
|
212
|
+
}, {
|
213
|
+
"seq:chr": "1" ,
|
214
|
+
"seq:pos": 16068 ,
|
215
|
+
"seq:ref": "T" ,
|
216
|
+
"seq:alt": "C"
|
217
|
+
, "dp": 398
|
218
|
+
}, {
|
219
|
+
"seq:chr": "1" ,
|
220
|
+
"seq:pos": 16103 ,
|
221
|
+
"seq:ref": "T" ,
|
222
|
+
"seq:alt": "G"
|
223
|
+
, "dp": 526
|
224
|
+
}, ]
|
225
|
+
}
|
@@ -1,261 +1,225 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
{
|
2
|
+
{
|
4
3
|
"HEADER": {
|
5
|
-
|
6
|
-
|
4
|
+
"files": [],
|
5
|
+
},
|
7
6
|
"COLUMNS": ["CHROM","POS","ID","REF","ALT","QUAL","FILTER","INFO","FORMAT","Original","s1t1","s2t1","s3t1","s1t2","s2t2","s3t2"],
|
8
|
-
"META": {"INFO":{"AC":{"ID":"AC","Number":"A","Type":"Integer","Description":"Allele count in genotypes, for each ALT allele, in the same order as listed"},"AF":{"ID":"AF","Number":"A","Type":"Float","Description":"Allele Frequency, for each ALT allele, in the same order as listed"},"AN":{"ID":"AN","Number":"1","Type":"Integer","Description":"Total number of alleles in called genotypes"},"BaseQRankSum":{"ID":"BaseQRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt Vs. Ref base qualities"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth; some reads may have been filtered"},"DS":{"ID":"DS","Number":"0","Type":"Flag","Description":"Were any of the samples downsampled?"},"Dels":{"ID":"Dels","Number":"1","Type":"Float","Description":"Fraction of Reads Containing Spanning Deletions"},"FS":{"ID":"FS","Number":"1","Type":"Float","Description":"Phred-scaled p-value using Fisher's exact test to detect strand bias"},"HaplotypeScore":{"ID":"HaplotypeScore","Number":"1","Type":"Float","Description":"Consistency of the site with at most two segregating haplotypes"},"InbreedingCoeff":{"ID":"InbreedingCoeff","Number":"1","Type":"Float","Description":"Inbreeding coefficient as estimated from the genotype likelihoods per-sample when compared against the Hardy-Weinberg expectation"},"MLEAC":{"ID":"MLEAC","Number":"A","Type":"Integer","Description":"Maximum likelihood expectation (MLE) for the allele counts (not necessarily the same as the AC), for each ALT allele, in the same order as listed"},"MLEAF":{"ID":"MLEAF","Number":"A","Type":"Float","Description":"Maximum likelihood expectation (MLE) for the allele frequency (not necessarily the same as the AF), for each ALT allele, in the same order as listed"},"MQ":{"ID":"MQ","Number":"1","Type":"Float","Description":"RMS Mapping Quality"},"MQ0":{"ID":"MQ0","Number":"1","Type":"Integer","Description":"Total Mapping Quality Zero Reads"},"MQRankSum":{"ID":"MQRankSum","Number":"1","Type":"Float","Description":"Z-score From Wilcoxon rank sum test of Alt vs. Ref read mapping qualities"},"QD":{"ID":"QD","Number":"1","Type":"Float","Description":"Variant Confidence/Quality by Depth"},"RPA":{"ID":"RPA","Number":".","Type":"Integer","Description":"Number of times tandem repeat unit is repeated, for each allele (including reference)"},"RU":{"ID":"RU","Number":"1","Type":"String","Description":"Tandem repeat unit (bases)"},"ReadPosRankSum":{"ID":"ReadPosRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt vs. Ref read position bias"},"STR":{"ID":"STR","Number":"0","Type":"Flag","Description":"Variant is a short tandem repeat"}},"FORMAT":{"AD":{"ID":"AD","Number":".","Type":"Integer","Description":"Allelic depths for the ref and alt alleles in the order listed"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth (reads with MQ=255 or with bad mates are filtered)"},"GQ":{"ID":"GQ","Number":"1","Type":"Integer","Description":"Genotype Quality"},"GT":{"ID":"GT","Number":"1","Type":"String","Description":"Genotype"},"PL":{"ID":"PL","Number":"G","Type":"Integer","Description":"Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification"}},"fileformat":"VCFv4.1","FILTER":"<ID=LowQual,Description=\"Low quality\">","GATKCommandLine":"<ID=UnifiedGenotyper,Version=2.8-1-g932cd3a,Date=\"Sat Jan 25 10:33:56 CET 2014\",Epoch=1390642436187,CommandLineOptions=\"analysis_type=UnifiedGenotyper input_file=[/data_fedor12/BAM/sander/Liver_clones/BIOPSY17513D/mapping/BIOPSY17513D_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone3/mapping/clone3_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone4/mapping/clone4_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone10/mapping/clone10_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone33/mapping/subclone33_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone46/mapping/subclone46_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone105/mapping/subclone105_dedup_realigned_recalibrated.bam] read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=[/data_fedor13/sander/variant_calling/Liver_clones/.queue/scatterGather/UnifiedGenotyper_noref-1-sg/temp_001_of_500/scatter.intervals] excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/data_fedor13/common_data/references/H_sapiens/GATK_b37_bundle_reference/basespace/human_g1k_v37.fasta nonDeterministicRandomSeed=false disableDithering=false maxRuntime=-1 maxRuntimeUnits=MINUTES downsampling_type=BY_SAMPLE downsample_to_fraction=null downsample_to_coverage=250 baq=OFF baqGapOpenPenalty=40.0 fix_misencoded_quality_scores=false allow_potentially_misencoded_quality_scores=false useOriginalQualities=false defaultBaseQualities=-1 performanceLog=null BQSR=null quantize_quals=0 disable_indel_quals=false emit_original_quals=false preserve_qscores_less_than=6 globalQScorePrior=-1.0 allow_bqsr_on_reduced_bams_despite_repeated_warnings=false validation_strictness=SILENT remove_program_records=false keep_program_records=false sample_rename_mapping_file=null unsafe=null disable_auto_index_creation_and_locking_when_reading_rods=false num_threads=1 num_cpu_threads_per_data_thread=1 num_io_threads=0 monitorThreadEfficiency=false num_bam_file_handles=null read_group_black_list=null pedigree=[] pedigreeString=[] pedigreeValidationType=STRICT allow_intervals_with_unindexed_bam=false generateShadowBCF=false variant_index_type=DYNAMIC_SEEK variant_index_parameter=-1 logging_level=INFO log_to_file=null help=false version=false genotype_likelihoods_model=SNP pcr_error_rate=1.0E-4 computeSLOD=false annotateNDA=false pair_hmm_implementation=LOGLESS_CACHING min_base_quality_score=17 max_deletion_fraction=0.05 allSitePLs=false min_indel_count_for_genotyping=5 min_indel_fraction_per_sample=0.25 indelGapContinuationPenalty=10 indelGapOpenPenalty=45 indelHaplotypeSize=80 indelDebug=false ignoreSNPAlleles=false allReadsSP=false ignoreLaneInfo=false reference_sample_calls=(RodBinding name= source=UNBOUND) reference_sample_name=null sample_ploidy=2 min_quality_score=1 max_quality_score=40 site_quality_prior=20 min_power_threshold_for_calling=0.95 min_reference_depth=100 exclude_filtered_reference_sites=false output_mode=EMIT_VARIANTS_ONLY heterozygosity=0.001 indel_heterozygosity=1.25E-4 genotyping_mode=DISCOVERY standard_min_confidence_threshold_for_calling=30.0 standard_min_confidence_threshold_for_emitting=30.0 alleles=(RodBinding name= source=UNBOUND) max_alternate_alleles=6 input_prior=[] contamination_fraction_to_filter=0.0 contamination_fraction_per_sample_file=null p_nonref_model=EXACT_INDEPENDENT exactcallslog=null dbsnp=(RodBinding name= source=UNBOUND) comp=[] out=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub onlyEmitSamples=[] debug_file=null metrics_file=null annotation=[] excludeAnnotation=[] filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false\">","contig":"<ID=GL000192.1,length=547496,assembly=b37>","reference":"file:human_g1k_v37.fasta"}
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
{
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
},
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
{
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
},
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
{
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
},
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
{
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
},
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
{
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
},
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
}
|
227
|
-
{
|
228
|
-
"seq:chr": "1" ,
|
229
|
-
"seq:pos": 15274 ,
|
230
|
-
"seq:ref": "A" ,
|
231
|
-
"seq:alt": "G"
|
232
|
-
, "dp": 636
|
233
|
-
},
|
234
|
-
{
|
235
|
-
"seq:chr": "1" ,
|
236
|
-
"seq:pos": 15447 ,
|
237
|
-
"seq:ref": "A" ,
|
238
|
-
"seq:alt": "G"
|
239
|
-
, "dp": 1213
|
240
|
-
},
|
241
|
-
{
|
242
|
-
"seq:chr": "1" ,
|
243
|
-
"seq:pos": 15688 ,
|
244
|
-
"seq:ref": "C" ,
|
245
|
-
"seq:alt": "T"
|
246
|
-
, "dp": 904
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"seq:chr": "1" ,
|
250
|
-
"seq:pos": 16068 ,
|
251
|
-
"seq:ref": "T" ,
|
252
|
-
"seq:alt": "C"
|
253
|
-
, "dp": 398
|
254
|
-
},
|
255
|
-
{
|
256
|
-
"seq:chr": "1" ,
|
257
|
-
"seq:pos": 16103 ,
|
258
|
-
"seq:ref": "T" ,
|
259
|
-
"seq:alt": "G"
|
260
|
-
, "dp": 526
|
261
|
-
},]
|
7
|
+
"META": {"INFO":{"AC":{"ID":"AC","Number":"A","Type":"Integer","Description":"Allele count in genotypes, for each ALT allele, in the same order as listed"},"AF":{"ID":"AF","Number":"A","Type":"Float","Description":"Allele Frequency, for each ALT allele, in the same order as listed"},"AN":{"ID":"AN","Number":"1","Type":"Integer","Description":"Total number of alleles in called genotypes"},"BaseQRankSum":{"ID":"BaseQRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt Vs. Ref base qualities"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth; some reads may have been filtered"},"DS":{"ID":"DS","Number":"0","Type":"Flag","Description":"Were any of the samples downsampled?"},"Dels":{"ID":"Dels","Number":"1","Type":"Float","Description":"Fraction of Reads Containing Spanning Deletions"},"FS":{"ID":"FS","Number":"1","Type":"Float","Description":"Phred-scaled p-value using Fisher's exact test to detect strand bias"},"HaplotypeScore":{"ID":"HaplotypeScore","Number":"1","Type":"Float","Description":"Consistency of the site with at most two segregating haplotypes"},"InbreedingCoeff":{"ID":"InbreedingCoeff","Number":"1","Type":"Float","Description":"Inbreeding coefficient as estimated from the genotype likelihoods per-sample when compared against the Hardy-Weinberg expectation"},"MLEAC":{"ID":"MLEAC","Number":"A","Type":"Integer","Description":"Maximum likelihood expectation (MLE) for the allele counts (not necessarily the same as the AC), for each ALT allele, in the same order as listed"},"MLEAF":{"ID":"MLEAF","Number":"A","Type":"Float","Description":"Maximum likelihood expectation (MLE) for the allele frequency (not necessarily the same as the AF), for each ALT allele, in the same order as listed"},"MQ":{"ID":"MQ","Number":"1","Type":"Float","Description":"RMS Mapping Quality"},"MQ0":{"ID":"MQ0","Number":"1","Type":"Integer","Description":"Total Mapping Quality Zero Reads"},"MQRankSum":{"ID":"MQRankSum","Number":"1","Type":"Float","Description":"Z-score From Wilcoxon rank sum test of Alt vs. Ref read mapping qualities"},"QD":{"ID":"QD","Number":"1","Type":"Float","Description":"Variant Confidence/Quality by Depth"},"RPA":{"ID":"RPA","Number":".","Type":"Integer","Description":"Number of times tandem repeat unit is repeated, for each allele (including reference)"},"RU":{"ID":"RU","Number":"1","Type":"String","Description":"Tandem repeat unit (bases)"},"ReadPosRankSum":{"ID":"ReadPosRankSum","Number":"1","Type":"Float","Description":"Z-score from Wilcoxon rank sum test of Alt vs. Ref read position bias"},"STR":{"ID":"STR","Number":"0","Type":"Flag","Description":"Variant is a short tandem repeat"}},"FORMAT":{"AD":{"ID":"AD","Number":".","Type":"Integer","Description":"Allelic depths for the ref and alt alleles in the order listed"},"DP":{"ID":"DP","Number":"1","Type":"Integer","Description":"Approximate read depth (reads with MQ=255 or with bad mates are filtered)"},"GQ":{"ID":"GQ","Number":"1","Type":"Integer","Description":"Genotype Quality"},"GT":{"ID":"GT","Number":"1","Type":"String","Description":"Genotype"},"PL":{"ID":"PL","Number":"G","Type":"Integer","Description":"Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification"}},"FILTER":{"LowQual":{"ID":"LowQual","Description":"Low quality"}},"contig":{"1":{"ID":"1","length":249250621,"assembly":"b37"},"2":{"ID":"2","length":243199373,"assembly":"b37"},"3":{"ID":"3","length":198022430,"assembly":"b37"},"4":{"ID":"4","length":191154276,"assembly":"b37"},"5":{"ID":"5","length":180915260,"assembly":"b37"},"6":{"ID":"6","length":171115067,"assembly":"b37"},"7":{"ID":"7","length":159138663,"assembly":"b37"},"8":{"ID":"8","length":146364022,"assembly":"b37"},"9":{"ID":"9","length":141213431,"assembly":"b37"},"10":{"ID":"10","length":135534747,"assembly":"b37"},"11":{"ID":"11","length":135006516,"assembly":"b37"},"12":{"ID":"12","length":133851895,"assembly":"b37"},"13":{"ID":"13","length":115169878,"assembly":"b37"},"14":{"ID":"14","length":107349540,"assembly":"b37"},"15":{"ID":"15","length":102531392,"assembly":"b37"},"16":{"ID":"16","length":90354753,"assembly":"b37"},"17":{"ID":"17","length":81195210,"assembly":"b37"},"18":{"ID":"18","length":78077248,"assembly":"b37"},"19":{"ID":"19","length":59128983,"assembly":"b37"},"20":{"ID":"20","length":63025520,"assembly":"b37"},"21":{"ID":"21","length":48129895,"assembly":"b37"},"22":{"ID":"22","length":51304566,"assembly":"b37"},"X":{"ID":"X","length":155270560,"assembly":"b37"},"Y":{"ID":"Y","length":59373566,"assembly":"b37"},"MT":{"ID":"MT","length":16569,"assembly":"b37"},"GL000207.1":{"ID":"GL000207.1","length":4262,"assembly":"b37"},"GL000226.1":{"ID":"GL000226.1","length":15008,"assembly":"b37"},"GL000229.1":{"ID":"GL000229.1","length":19913,"assembly":"b37"},"GL000231.1":{"ID":"GL000231.1","length":27386,"assembly":"b37"},"GL000210.1":{"ID":"GL000210.1","length":27682,"assembly":"b37"},"GL000239.1":{"ID":"GL000239.1","length":33824,"assembly":"b37"},"GL000235.1":{"ID":"GL000235.1","length":34474,"assembly":"b37"},"GL000201.1":{"ID":"GL000201.1","length":36148,"assembly":"b37"},"GL000247.1":{"ID":"GL000247.1","length":36422,"assembly":"b37"},"GL000245.1":{"ID":"GL000245.1","length":36651,"assembly":"b37"},"GL000197.1":{"ID":"GL000197.1","length":37175,"assembly":"b37"},"GL000203.1":{"ID":"GL000203.1","length":37498,"assembly":"b37"},"GL000246.1":{"ID":"GL000246.1","length":38154,"assembly":"b37"},"GL000249.1":{"ID":"GL000249.1","length":38502,"assembly":"b37"},"GL000196.1":{"ID":"GL000196.1","length":38914,"assembly":"b37"},"GL000248.1":{"ID":"GL000248.1","length":39786,"assembly":"b37"},"GL000244.1":{"ID":"GL000244.1","length":39929,"assembly":"b37"},"GL000238.1":{"ID":"GL000238.1","length":39939,"assembly":"b37"},"GL000202.1":{"ID":"GL000202.1","length":40103,"assembly":"b37"},"GL000234.1":{"ID":"GL000234.1","length":40531,"assembly":"b37"},"GL000232.1":{"ID":"GL000232.1","length":40652,"assembly":"b37"},"GL000206.1":{"ID":"GL000206.1","length":41001,"assembly":"b37"},"GL000240.1":{"ID":"GL000240.1","length":41933,"assembly":"b37"},"GL000236.1":{"ID":"GL000236.1","length":41934,"assembly":"b37"},"GL000241.1":{"ID":"GL000241.1","length":42152,"assembly":"b37"},"GL000243.1":{"ID":"GL000243.1","length":43341,"assembly":"b37"},"GL000242.1":{"ID":"GL000242.1","length":43523,"assembly":"b37"},"GL000230.1":{"ID":"GL000230.1","length":43691,"assembly":"b37"},"GL000237.1":{"ID":"GL000237.1","length":45867,"assembly":"b37"},"GL000233.1":{"ID":"GL000233.1","length":45941,"assembly":"b37"},"GL000204.1":{"ID":"GL000204.1","length":81310,"assembly":"b37"},"GL000198.1":{"ID":"GL000198.1","length":90085,"assembly":"b37"},"GL000208.1":{"ID":"GL000208.1","length":92689,"assembly":"b37"},"GL000191.1":{"ID":"GL000191.1","length":106433,"assembly":"b37"},"GL000227.1":{"ID":"GL000227.1","length":128374,"assembly":"b37"},"GL000228.1":{"ID":"GL000228.1","length":129120,"assembly":"b37"},"GL000214.1":{"ID":"GL000214.1","length":137718,"assembly":"b37"},"GL000221.1":{"ID":"GL000221.1","length":155397,"assembly":"b37"},"GL000209.1":{"ID":"GL000209.1","length":159169,"assembly":"b37"},"GL000218.1":{"ID":"GL000218.1","length":161147,"assembly":"b37"},"GL000220.1":{"ID":"GL000220.1","length":161802,"assembly":"b37"},"GL000213.1":{"ID":"GL000213.1","length":164239,"assembly":"b37"},"GL000211.1":{"ID":"GL000211.1","length":166566,"assembly":"b37"},"GL000199.1":{"ID":"GL000199.1","length":169874,"assembly":"b37"},"GL000217.1":{"ID":"GL000217.1","length":172149,"assembly":"b37"},"GL000216.1":{"ID":"GL000216.1","length":172294,"assembly":"b37"},"GL000215.1":{"ID":"GL000215.1","length":172545,"assembly":"b37"},"GL000205.1":{"ID":"GL000205.1","length":174588,"assembly":"b37"},"GL000219.1":{"ID":"GL000219.1","length":179198,"assembly":"b37"},"GL000224.1":{"ID":"GL000224.1","length":179693,"assembly":"b37"},"GL000223.1":{"ID":"GL000223.1","length":180455,"assembly":"b37"},"GL000195.1":{"ID":"GL000195.1","length":182896,"assembly":"b37"},"GL000212.1":{"ID":"GL000212.1","length":186858,"assembly":"b37"},"GL000222.1":{"ID":"GL000222.1","length":186861,"assembly":"b37"},"GL000200.1":{"ID":"GL000200.1","length":187035,"assembly":"b37"},"GL000193.1":{"ID":"GL000193.1","length":189789,"assembly":"b37"},"GL000194.1":{"ID":"GL000194.1","length":191469,"assembly":"b37"},"GL000225.1":{"ID":"GL000225.1","length":211173,"assembly":"b37"},"GL000192.1":{"ID":"GL000192.1","length":547496,"assembly":"b37"}},"GATKCommandLine":{"UnifiedGenotyper":{"ID":"UnifiedGenotyper","Version":"2.8-1-g932cd3a","Date":"Sat Jan 25 10:33:56 CET 2014","Epoch":1390642436187,"CommandLineOptions":"analysis_type=UnifiedGenotyper input_file=[/data_fedor12/BAM/sander/Liver_clones/BIOPSY17513D/mapping/BIOPSY17513D_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone3/mapping/clone3_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone4/mapping/clone4_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/clone10/mapping/clone10_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone33/mapping/subclone33_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone46/mapping/subclone46_dedup_realigned_recalibrated.bam, /data_fedor12/BAM/sander/Liver_clones/subclone105/mapping/subclone105_dedup_realigned_recalibrated.bam] read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=[/data_fedor13/sander/variant_calling/Liver_clones/.queue/scatterGather/UnifiedGenotyper_noref-1-sg/temp_001_of_500/scatter.intervals] excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/data_fedor13/common_data/references/H_sapiens/GATK_b37_bundle_reference/basespace/human_g1k_v37.fasta nonDeterministicRandomSeed=false disableDithering=false maxRuntime=-1 maxRuntimeUnits=MINUTES downsampling_type=BY_SAMPLE downsample_to_fraction=null downsample_to_coverage=250 baq=OFF baqGapOpenPenalty=40.0 fix_misencoded_quality_scores=false allow_potentially_misencoded_quality_scores=false useOriginalQualities=false defaultBaseQualities=-1 performanceLog=null BQSR=null quantize_quals=0 disable_indel_quals=false emit_original_quals=false preserve_qscores_less_than=6 globalQScorePrior=-1.0 allow_bqsr_on_reduced_bams_despite_repeated_warnings=false validation_strictness=SILENT remove_program_records=false keep_program_records=false sample_rename_mapping_file=null unsafe=null disable_auto_index_creation_and_locking_when_reading_rods=false num_threads=1 num_cpu_threads_per_data_thread=1 num_io_threads=0 monitorThreadEfficiency=false num_bam_file_handles=null read_group_black_list=null pedigree=[] pedigreeString=[] pedigreeValidationType=STRICT allow_intervals_with_unindexed_bam=false generateShadowBCF=false variant_index_type=DYNAMIC_SEEK variant_index_parameter=-1 logging_level=INFO log_to_file=null help=false version=false genotype_likelihoods_model=SNP pcr_error_rate=1.0E-4 computeSLOD=false annotateNDA=false pair_hmm_implementation=LOGLESS_CACHING min_base_quality_score=17 max_deletion_fraction=0.05 allSitePLs=false min_indel_count_for_genotyping=5 min_indel_fraction_per_sample=0.25 indelGapContinuationPenalty=10 indelGapOpenPenalty=45 indelHaplotypeSize=80 indelDebug=false ignoreSNPAlleles=false allReadsSP=false ignoreLaneInfo=false reference_sample_calls=(RodBinding name= source=UNBOUND) reference_sample_name=null sample_ploidy=2 min_quality_score=1 max_quality_score=40 site_quality_prior=20 min_power_threshold_for_calling=0.95 min_reference_depth=100 exclude_filtered_reference_sites=false output_mode=EMIT_VARIANTS_ONLY heterozygosity=0.001 indel_heterozygosity=1.25E-4 genotyping_mode=DISCOVERY standard_min_confidence_threshold_for_calling=30.0 standard_min_confidence_threshold_for_emitting=30.0 alleles=(RodBinding name= source=UNBOUND) max_alternate_alleles=6 input_prior=[] contamination_fraction_to_filter=0.0 contamination_fraction_per_sample_file=null p_nonref_model=EXACT_INDEPENDENT exactcallslog=null dbsnp=(RodBinding name= source=UNBOUND) comp=[] out=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.sting.gatk.io.stubs.VariantContextWriterStub onlyEmitSamples=[] debug_file=null metrics_file=null annotation=[] excludeAnnotation=[] filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false"}},"fileformat":"VCFv4.1","reference":"file:human_g1k_v37.fasta"},
|
8
|
+
"BODY": [ {
|
9
|
+
"seq:chr": "1" ,
|
10
|
+
"seq:pos": 10257 ,
|
11
|
+
"seq:ref": "A" ,
|
12
|
+
"seq:alt": "C"
|
13
|
+
, "dp": 1518
|
14
|
+
}, {
|
15
|
+
"seq:chr": "1" ,
|
16
|
+
"seq:pos": 10291 ,
|
17
|
+
"seq:ref": "C" ,
|
18
|
+
"seq:alt": "T"
|
19
|
+
, "dp": 1433
|
20
|
+
}, {
|
21
|
+
"seq:chr": "1" ,
|
22
|
+
"seq:pos": 10297 ,
|
23
|
+
"seq:ref": "C" ,
|
24
|
+
"seq:alt": "T"
|
25
|
+
, "dp": 1440
|
26
|
+
}, {
|
27
|
+
"seq:chr": "1" ,
|
28
|
+
"seq:pos": 10303 ,
|
29
|
+
"seq:ref": "C" ,
|
30
|
+
"seq:alt": "T"
|
31
|
+
, "dp": 1460
|
32
|
+
}, {
|
33
|
+
"seq:chr": "1" ,
|
34
|
+
"seq:pos": 10315 ,
|
35
|
+
"seq:ref": "C" ,
|
36
|
+
"seq:alt": "T"
|
37
|
+
, "dp": 1500
|
38
|
+
}, {
|
39
|
+
"seq:chr": "1" ,
|
40
|
+
"seq:pos": 10321 ,
|
41
|
+
"seq:ref": "C" ,
|
42
|
+
"seq:alt": "T"
|
43
|
+
, "dp": 1537
|
44
|
+
}, {
|
45
|
+
"seq:chr": "1" ,
|
46
|
+
"seq:pos": 10327 ,
|
47
|
+
"seq:ref": "T" ,
|
48
|
+
"seq:alt": "C"
|
49
|
+
, "dp": 1641
|
50
|
+
}, {
|
51
|
+
"seq:chr": "1" ,
|
52
|
+
"seq:pos": 10583 ,
|
53
|
+
"seq:ref": "G" ,
|
54
|
+
"seq:alt": "A"
|
55
|
+
, "dp": 129
|
56
|
+
}, {
|
57
|
+
"seq:chr": "1" ,
|
58
|
+
"seq:pos": 10665 ,
|
59
|
+
"seq:ref": "C" ,
|
60
|
+
"seq:alt": "G"
|
61
|
+
, "dp": 28
|
62
|
+
}, {
|
63
|
+
"seq:chr": "1" ,
|
64
|
+
"seq:pos": 10694 ,
|
65
|
+
"seq:ref": "C" ,
|
66
|
+
"seq:alt": "G"
|
67
|
+
, "dp": 22
|
68
|
+
}, {
|
69
|
+
"seq:chr": "1" ,
|
70
|
+
"seq:pos": 10723 ,
|
71
|
+
"seq:ref": "C" ,
|
72
|
+
"seq:alt": "G"
|
73
|
+
, "dp": 18
|
74
|
+
}, {
|
75
|
+
"seq:chr": "1" ,
|
76
|
+
"seq:pos": 12783 ,
|
77
|
+
"seq:ref": "G" ,
|
78
|
+
"seq:alt": "A"
|
79
|
+
, "dp": 939
|
80
|
+
}, {
|
81
|
+
"seq:chr": "1" ,
|
82
|
+
"seq:pos": 13116 ,
|
83
|
+
"seq:ref": "T" ,
|
84
|
+
"seq:alt": "G"
|
85
|
+
, "dp": 721
|
86
|
+
}, {
|
87
|
+
"seq:chr": "1" ,
|
88
|
+
"seq:pos": 13118 ,
|
89
|
+
"seq:ref": "A" ,
|
90
|
+
"seq:alt": "G"
|
91
|
+
, "dp": 703
|
92
|
+
}, {
|
93
|
+
"seq:chr": "1" ,
|
94
|
+
"seq:pos": 13178 ,
|
95
|
+
"seq:ref": "G" ,
|
96
|
+
"seq:alt": "A"
|
97
|
+
, "dp": 929
|
98
|
+
}, {
|
99
|
+
"seq:chr": "1" ,
|
100
|
+
"seq:pos": 13302 ,
|
101
|
+
"seq:ref": "C" ,
|
102
|
+
"seq:alt": "T"
|
103
|
+
, "dp": 692
|
104
|
+
}, {
|
105
|
+
"seq:chr": "1" ,
|
106
|
+
"seq:pos": 13757 ,
|
107
|
+
"seq:ref": "G" ,
|
108
|
+
"seq:alt": "A"
|
109
|
+
, "dp": 1149
|
110
|
+
}, {
|
111
|
+
"seq:chr": "1" ,
|
112
|
+
"seq:pos": 13868 ,
|
113
|
+
"seq:ref": "A" ,
|
114
|
+
"seq:alt": "G"
|
115
|
+
, "dp": 1108
|
116
|
+
}, {
|
117
|
+
"seq:chr": "1" ,
|
118
|
+
"seq:pos": 13896 ,
|
119
|
+
"seq:ref": "C" ,
|
120
|
+
"seq:alt": "A"
|
121
|
+
, "dp": 830
|
122
|
+
}, {
|
123
|
+
"seq:chr": "1" ,
|
124
|
+
"seq:pos": 14354 ,
|
125
|
+
"seq:ref": "C" ,
|
126
|
+
"seq:alt": "A"
|
127
|
+
, "dp": 764
|
128
|
+
}, {
|
129
|
+
"seq:chr": "1" ,
|
130
|
+
"seq:pos": 14464 ,
|
131
|
+
"seq:ref": "A" ,
|
132
|
+
"seq:alt": "T"
|
133
|
+
, "dp": 809
|
134
|
+
}, {
|
135
|
+
"seq:chr": "1" ,
|
136
|
+
"seq:pos": 14673 ,
|
137
|
+
"seq:ref": "G" ,
|
138
|
+
"seq:alt": "C"
|
139
|
+
, "dp": 754
|
140
|
+
}, {
|
141
|
+
"seq:chr": "1" ,
|
142
|
+
"seq:pos": 14699 ,
|
143
|
+
"seq:ref": "C" ,
|
144
|
+
"seq:alt": "G"
|
145
|
+
, "dp": 719
|
146
|
+
}, {
|
147
|
+
"seq:chr": "1" ,
|
148
|
+
"seq:pos": 14907 ,
|
149
|
+
"seq:ref": "A" ,
|
150
|
+
"seq:alt": "G"
|
151
|
+
, "dp": 1083
|
152
|
+
}, {
|
153
|
+
"seq:chr": "1" ,
|
154
|
+
"seq:pos": 14930 ,
|
155
|
+
"seq:ref": "A" ,
|
156
|
+
"seq:alt": "G"
|
157
|
+
, "dp": 1092
|
158
|
+
}, {
|
159
|
+
"seq:chr": "1" ,
|
160
|
+
"seq:pos": 14933 ,
|
161
|
+
"seq:ref": "G" ,
|
162
|
+
"seq:alt": "A"
|
163
|
+
, "dp": 1089
|
164
|
+
}, {
|
165
|
+
"seq:chr": "1" ,
|
166
|
+
"seq:pos": 14948 ,
|
167
|
+
"seq:ref": "G" ,
|
168
|
+
"seq:alt": "A"
|
169
|
+
, "dp": 1050
|
170
|
+
}, {
|
171
|
+
"seq:chr": "1" ,
|
172
|
+
"seq:pos": 14976 ,
|
173
|
+
"seq:ref": "G" ,
|
174
|
+
"seq:alt": "A"
|
175
|
+
, "dp": 939
|
176
|
+
}, {
|
177
|
+
"seq:chr": "1" ,
|
178
|
+
"seq:pos": 15118 ,
|
179
|
+
"seq:ref": "A" ,
|
180
|
+
"seq:alt": "G"
|
181
|
+
, "dp": 1004
|
182
|
+
}, {
|
183
|
+
"seq:chr": "1" ,
|
184
|
+
"seq:pos": 15190 ,
|
185
|
+
"seq:ref": "G" ,
|
186
|
+
"seq:alt": "A"
|
187
|
+
, "dp": 1090
|
188
|
+
}, {
|
189
|
+
"seq:chr": "1" ,
|
190
|
+
"seq:pos": 15211 ,
|
191
|
+
"seq:ref": "T" ,
|
192
|
+
"seq:alt": "G"
|
193
|
+
, "dp": 992
|
194
|
+
}, {
|
195
|
+
"seq:chr": "1" ,
|
196
|
+
"seq:pos": 15274 ,
|
197
|
+
"seq:ref": "A" ,
|
198
|
+
"seq:alt": "G"
|
199
|
+
, "dp": 636
|
200
|
+
}, {
|
201
|
+
"seq:chr": "1" ,
|
202
|
+
"seq:pos": 15447 ,
|
203
|
+
"seq:ref": "A" ,
|
204
|
+
"seq:alt": "G"
|
205
|
+
, "dp": 1213
|
206
|
+
}, {
|
207
|
+
"seq:chr": "1" ,
|
208
|
+
"seq:pos": 15688 ,
|
209
|
+
"seq:ref": "C" ,
|
210
|
+
"seq:alt": "T"
|
211
|
+
, "dp": 904
|
212
|
+
}, {
|
213
|
+
"seq:chr": "1" ,
|
214
|
+
"seq:pos": 16068 ,
|
215
|
+
"seq:ref": "T" ,
|
216
|
+
"seq:alt": "C"
|
217
|
+
, "dp": 398
|
218
|
+
}, {
|
219
|
+
"seq:chr": "1" ,
|
220
|
+
"seq:pos": 16103 ,
|
221
|
+
"seq:ref": "T" ,
|
222
|
+
"seq:alt": "G"
|
223
|
+
, "dp": 526
|
224
|
+
}, ]
|
225
|
+
}
|