bio-vcf 0.8.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
data/lib/bio-vcf/vcfrecord.rb
CHANGED
@@ -13,38 +13,49 @@ module BioVcf
|
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
|
-
|
17
|
-
def []= k, v
|
18
|
-
split_fields if not @h
|
19
|
-
kupper = k.upcase
|
20
|
-
@h[kupper] = v
|
21
|
-
@original_key[kupper] = k
|
22
|
-
end
|
23
|
-
|
24
|
-
def method_missing(m, *args, &block)
|
16
|
+
def [] k
|
25
17
|
# split_fields if not @h
|
26
18
|
# /#{m}=(?<value>[^;])/.@info
|
19
|
+
kupper = k.upcase
|
27
20
|
v = if @h
|
28
|
-
@h[
|
21
|
+
@h[kupper]
|
29
22
|
else
|
30
|
-
@info =~
|
23
|
+
@info =~ /[\A;]#{k}=([^;]+)/i
|
31
24
|
value = $1
|
32
25
|
# p [m,value]
|
33
26
|
# m = @info.match(/#{m.to_s.upcase}=(?<value>[^;]+)/) slower!
|
34
27
|
# value = m[:value]
|
35
28
|
if value == nil
|
36
29
|
split_fields # no option but to split
|
37
|
-
@h[
|
30
|
+
@h[kupper]
|
38
31
|
else
|
39
32
|
value
|
40
33
|
end
|
41
34
|
end
|
42
35
|
ConvertStringToValue::convert(v)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Set INFO fields (used by --rewrite)
|
39
|
+
def []= k, v
|
40
|
+
split_fields if not @h
|
41
|
+
kupper = k.upcase
|
42
|
+
@h[kupper] = v
|
43
|
+
@original_key[kupper] = k
|
44
|
+
end
|
45
|
+
|
46
|
+
def fields
|
47
|
+
split_fields
|
48
|
+
@h.keys
|
49
|
+
end
|
50
|
+
|
51
|
+
def method_missing(m, *args, &block)
|
52
|
+
self[m.to_s]
|
43
53
|
end
|
44
54
|
|
45
55
|
private
|
46
56
|
|
47
57
|
def split_fields
|
58
|
+
return @h if @h
|
48
59
|
@h = {}
|
49
60
|
@original_key = {}
|
50
61
|
@info.split(/;/).each do |f|
|
@@ -151,6 +162,10 @@ module BioVcf
|
|
151
162
|
@qual ||= @fields[5].to_f
|
152
163
|
end
|
153
164
|
|
165
|
+
def filter
|
166
|
+
@filter ||= @fields[6]
|
167
|
+
end
|
168
|
+
|
154
169
|
def info
|
155
170
|
@info ||= VcfRecordParser.get_info(@fields[7])
|
156
171
|
end
|
@@ -239,19 +254,19 @@ module BioVcf
|
|
239
254
|
end
|
240
255
|
end
|
241
256
|
|
242
|
-
def
|
257
|
+
def gfilter expr, ignore_missing_data: true, quiet: false
|
243
258
|
begin
|
244
259
|
if not respond_to?(:call_cached_filter)
|
245
260
|
code =
|
246
261
|
"""
|
247
|
-
def
|
262
|
+
def call_cached_gfilter(rec,fields)
|
248
263
|
r = rec
|
249
264
|
#{expr}
|
250
265
|
end
|
251
266
|
"""
|
252
267
|
self.class.class_eval(code)
|
253
268
|
end
|
254
|
-
res =
|
269
|
+
res = call_cached_gfilter(self,@fields)
|
255
270
|
if res.kind_of?(Array)
|
256
271
|
res.join("\t")
|
257
272
|
else
|
@@ -1,20 +1,30 @@
|
|
1
1
|
# Ragel lexer for VCF-header
|
2
2
|
#
|
3
|
-
# This is a
|
4
|
-
# to generate meta information
|
5
|
-
#
|
6
|
-
# parsing of key-value pairs with
|
7
|
-
# escaped quotes in quoted string
|
8
|
-
#
|
3
|
+
# This is compact a parser/lexer for the VCF header format. Bio-vcf
|
4
|
+
# uses the parser to generate meta information that can be output to
|
5
|
+
# (for example) JSON format. The advantage of using ragel as a state
|
6
|
+
# engine is that it allows for easy parsing of key-value pairs with
|
7
|
+
# syntax checking and, for example, escaped quotes in quoted string
|
8
|
+
# values. This ragel parser/lexer generates valid Ruby; it should be
|
9
|
+
# fairly trivial to generate python/C/JAVA instead. Note that this
|
10
|
+
# edition validates ID and Number fields only. Other fields are
|
11
|
+
# dumped 'AS IS'.
|
9
12
|
#
|
10
13
|
# Note the .rb version is generated from ./ragel/gen_vcfheaderline_parser.rl
|
14
|
+
#
|
15
|
+
# by Pjotr Prins (c) 2014/2015
|
11
16
|
|
12
17
|
module BioVcf
|
13
18
|
|
14
19
|
module VcfHeaderParser
|
15
20
|
|
16
21
|
module RagelKeyValues
|
17
|
-
|
22
|
+
|
23
|
+
def self.debug msg
|
24
|
+
# nothing
|
25
|
+
# $stderr.print "DEBUG: ",msg,"\n"
|
26
|
+
end
|
27
|
+
|
18
28
|
=begin
|
19
29
|
%%{
|
20
30
|
|
@@ -34,34 +44,43 @@ module BioVcf
|
|
34
44
|
not_squote_or_escape = [^'\\];
|
35
45
|
not_dquote_or_escape = [^"\\];
|
36
46
|
escaped_something = /\\./;
|
37
|
-
ss =
|
38
|
-
dd =
|
47
|
+
ss = squote ( not_squote_or_escape | escaped_something )* >mark %endquoted squote;
|
48
|
+
dd = dquote ( not_dquote_or_escape | escaped_something )* >mark %endquoted dquote;
|
39
49
|
|
40
50
|
integer = ('+'|'-')?digit+;
|
41
51
|
float = ('+'|'-')?digit+'.'digit+;
|
42
52
|
assignment = '=';
|
43
|
-
identifier = (
|
44
|
-
|
53
|
+
identifier = ( alnum (alnum|'.'|'_')* );
|
54
|
+
version = ( digit (alnum|'.'|'_'|'-')* );
|
55
|
+
str = (ss|dd)* ;
|
45
56
|
boolean = '.';
|
46
|
-
|
57
|
+
date = str;
|
58
|
+
key_word = ( ('Type'|'Description'|'Source'|identifier - ('ID'|'Number'|'length'|'Version'|'assembly'|'Date'|'CommandLineOptions')) >mark %{ emit.call(:key_word,data,ts,p) } );
|
47
59
|
any_value = ( str|( integer|float|boolean|identifier >mark %{ emit.call(:value,data,ts,p) } ));
|
48
60
|
id_value = ( identifier >mark %{ emit.call(:value,data,ts,p) } );
|
49
|
-
|
61
|
+
|
62
|
+
version_value = ( str| ( version >mark %{ emit.call(:value,data,ts,p) } ));
|
63
|
+
date_value = ( date );
|
64
|
+
gatk_value = ( str );
|
50
65
|
number_value = ( ( integer|boolean|'A'|'R'|'G' ) >mark %{ emit.call(:value,data,ts,p) } );
|
51
66
|
|
52
|
-
id_kv = ( ( ('ID') %kw '=' id_value ) @!{ error_code="ID"} );
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
67
|
+
id_kv = ( ( ('ID'|'assembly') %kw '=' id_value ) %{ debug("ID FOUND") } @!{ error_code="Malformed ID"} );
|
68
|
+
version_kv = ( ( ('Version') %kw '=' version_value ) @!{ error_code="Version"} );
|
69
|
+
number_kv = ( ( ('Number'|'length') %kw '=' number_value ) @!{ error_code="Number"} );
|
70
|
+
date_kv = ( ( ('Date') %kw '=' date_value ) %{ debug("DATE FOUND") } @!{ error_code="Date"} );
|
71
|
+
gatk_kv = ( ( ('CommandLineOptions') %kw '=' gatk_value ) @!{ error_code="GATK"} );
|
72
|
+
key_value = ( id_kv | version_kv | date_kv | number_kv | gatk_kv | (key_word '=' any_value) ) %{ debug("KEY_VALUE found") } >mark @!{ error_code="unknown key-value " };
|
73
|
+
|
74
|
+
main := ( '##' ('FILTER'|'FORMAT'|'contig'|'INFO'|'ALT'|'GATKCommandLine') '=') (('<'|',') key_value )* '>';
|
57
75
|
}%%
|
58
76
|
=end
|
59
77
|
|
60
78
|
%% write data;
|
61
|
-
# %% this just fixes
|
79
|
+
# %% this just fixes syntax highlighting...
|
62
80
|
|
63
81
|
def self.run_lexer(buf, options = {})
|
64
82
|
do_debug = (options[:debug] == true)
|
83
|
+
$stderr.print "---> ",buf,"\n" if do_debug
|
65
84
|
data = buf.unpack("c*") if(buf.is_a?(String))
|
66
85
|
eof = data.length
|
67
86
|
values = []
|
@@ -70,7 +89,7 @@ def self.run_lexer(buf, options = {})
|
|
70
89
|
emit = lambda { |type, data, ts, p|
|
71
90
|
# Print the type and text of the last read token
|
72
91
|
# p ts,p
|
73
|
-
|
92
|
+
$stderr.print "EMITTED: #{type}: #{data[ts...p].pack('c*')}\n" if do_debug
|
74
93
|
values << [type,data[ts...p].pack('c*')]
|
75
94
|
}
|
76
95
|
|
@@ -85,8 +104,11 @@ def self.run_lexer(buf, options = {})
|
|
85
104
|
res = {}
|
86
105
|
# p values
|
87
106
|
values.each_slice(2) do | a,b |
|
88
|
-
|
89
|
-
|
107
|
+
$stderr.print '*',a,b if do_debug
|
108
|
+
keyword = a[1]
|
109
|
+
value = b[1]
|
110
|
+
value = value.to_i if ['length','Epoch'].index(keyword)
|
111
|
+
res[keyword] = value
|
90
112
|
# p h[:value] if h[:name]==:identifier or h[:name]==:value or h[:name]==:string
|
91
113
|
end
|
92
114
|
rescue
|
@@ -94,7 +116,7 @@ def self.run_lexer(buf, options = {})
|
|
94
116
|
p values
|
95
117
|
raise
|
96
118
|
end
|
97
|
-
|
119
|
+
$stderr.print(res,"\n") if do_debug
|
98
120
|
res
|
99
121
|
end
|
100
122
|
end
|
@@ -103,7 +125,19 @@ end
|
|
103
125
|
|
104
126
|
if __FILE__ == $0
|
105
127
|
|
128
|
+
gatkcommandline = <<LINE1
|
129
|
+
##GATKCommandLine=<ID=CombineVariants,Version=3.2-2-gec30cee,Date="Thu Oct 30 13:41:59 CET 2014",Epoch=1414672919266,CommandLineOptions="analysis_type=CombineVariants input_file=[] showFullBamList=false read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=null excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/hpc/cog_bioinf/GENOMES/Homo_sapiens.GRCh37.GATK.illumina/Homo_sapiens.GRCh37.GATK.illumina.fasta nonDeterministicRandomSeed=false disableDithering=false maxRuntime=-1 maxRuntimeUnits=MINUTES downsampling_type=BY_SAMPLE downsample_to_fraction=null downsample_to_coverage=1000 baq=OFF baqGapOpenPenalty=40.0 refactor_NDN_cigar_string=false 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 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 variant=[(RodBindingCollection [(RodBinding name=variant source=/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/tmp/testSubsetExome.filtered_snps.vcf)]), (RodBindingCollection [(RodBinding name=variant2 source=/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/tmp/testSubsetExome.filtered_indels.vcf)])] out=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub genotypemergeoption=UNSORTED filteredrecordsmergetype=KEEP_IF_ANY_UNFILTERED multipleallelesmergetype=BY_TYPE rod_priority_list=null printComplexMerges=false filteredAreUncalled=false minimalVCF=false excludeNonVariants=false setKey=set assumeIdenticalSamples=false minimumN=1 suppressCommandLineHeader=false mergeInfoWithMaxAC=false filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false">
|
130
|
+
LINE1
|
131
|
+
|
132
|
+
h = {}
|
133
|
+
s = gatkcommandline.strip
|
134
|
+
# print s,"\n"
|
135
|
+
result = BioVcf::VcfHeaderParser::RagelKeyValues.run_lexer(s, debug: true)
|
136
|
+
# h[result['ID']] = result
|
137
|
+
# p result
|
138
|
+
|
106
139
|
lines = <<LINES
|
140
|
+
##FILTER=<ID=HaplotypeScoreHigh,Description="HaplotypeScore > 13.0">
|
107
141
|
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
|
108
142
|
##FORMAT=<ID=DP,Number=1,Type=Integer,Description="Total read depth",Extra="Yes?">
|
109
143
|
##FORMAT=<ID=DP4,Number=4,Type=Integer,Description="# high-quality ref-forward bases, ref-reverse, alt-forward and alt-reverse bases">
|
@@ -112,11 +146,20 @@ lines = <<LINES
|
|
112
146
|
##INFO=<ID=GENEINFO,Number=1,Type=String,Description="Pairs each of gene symbol:gene id. The gene symbol and id are delimited by a colon (:), and each pair is delimited by a vertical bar (|)">
|
113
147
|
##INFO=<ID=CLNHGVS,Number=.,Type=String,Description="Variant names from HGVS. The order of these variants corresponds to the order of the info in the other clinical INFO tags.">
|
114
148
|
##INFO=<ID=CLNHGVS1,Number=.,Type=String,Description="Variant names from \\"HGVS\\". The order of these 'variants' corresponds to the order of the info in the other clinical INFO tags.">
|
149
|
+
##contig=<ID=XXXY12>
|
150
|
+
##contig=<ID=Y,length=59373566>
|
115
151
|
LINES
|
116
152
|
|
153
|
+
h = {}
|
117
154
|
lines.strip.split("\n").each { |s|
|
118
|
-
print s,"\n"
|
119
|
-
|
155
|
+
# print s,"\n"
|
156
|
+
result = BioVcf::VcfHeaderParser::RagelKeyValues.run_lexer(s, debug: true)
|
157
|
+
h[result['ID']] = result
|
158
|
+
p result
|
120
159
|
}
|
160
|
+
p h
|
161
|
+
|
162
|
+
raise "ERROR" if h != {"HaplotypeScoreHigh"=>{"ID"=>"HaplotypeScoreHigh", "Description"=>"HaplotypeScore > 13.0"}, "GT"=>{"ID"=>"GT", "Number"=>"1", "Type"=>"String", "Description"=>"Genotype"}, "DP"=>{"ID"=>"DP", "Number"=>"1", "Type"=>"Integer", "Description"=>"Total read depth", "Extra"=>"Yes?"}, "DP4"=>{"ID"=>"DP4", "Number"=>"4", "Type"=>"Integer", "Description"=>"# high-quality ref-forward bases, ref-reverse, alt-forward and alt-reverse bases"}, "PM"=>{"ID"=>"PM", "Number"=>"0", "Type"=>"Flag", "Description"=>"Variant is Precious(Clinical,Pubmed Cited)"}, "VP"=>{"ID"=>"VP", "Number"=>"1", "Type"=>"String", "Description"=>"Variation Property. Documentation is at ftp://ftp.ncbi.nlm.nih.gov/snp/specs/dbSNP_BitField_latest.pdf", "Source"=>"dbsnp", "Version"=>"138"}, "GENEINFO"=>{"ID"=>"GENEINFO", "Number"=>"1", "Type"=>"String", "Description"=>"Pairs each of gene symbol:gene id. The gene symbol and id are delimited by a colon (:), and each pair is delimited by a vertical bar (|)"}, "CLNHGVS"=>{"ID"=>"CLNHGVS", "Number"=>".", "Type"=>"String", "Description"=>"Variant names from HGVS. The order of these variants corresponds to the order of the info in the other clinical INFO tags."}, "CLNHGVS1"=>{"ID"=>"CLNHGVS1", "Number"=>".", "Type"=>"String", "Description"=>"Variant names from \\\"HGVS\\\". The order of these 'variants' corresponds to the order of the info in the other clinical INFO tags."}, "XXXY12"=>{"ID"=>"XXXY12"}, "Y"=>{"ID"=>"Y", "length"=>59373566}}
|
163
|
+
|
121
164
|
|
122
165
|
end # test
|
data/ragel/generate.sh
CHANGED
data/template/vcf2json.erb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
=HEADER
|
2
2
|
<% require 'json' %>
|
3
|
-
[
|
4
|
-
{ "HEADER": {
|
5
|
-
"options": <%= options.to_h.to_json %>,
|
6
|
-
"files": <%= ARGV %>,
|
7
|
-
"version": "<%= BIOVCF_VERSION %>"
|
8
|
-
},
|
9
|
-
|
10
|
-
=BODY
|
11
|
-
|
12
3
|
{
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
4
|
+
"HEADER": {
|
5
|
+
"options": <%= options.to_h.to_json %>,
|
6
|
+
"files": <%= ARGV %>,
|
7
|
+
"version": "<%= BIOVCF_VERSION %>"
|
8
|
+
},
|
9
|
+
"BODY": [
|
10
|
+
=BODY
|
11
|
+
{
|
12
|
+
"seq:chr": "<%= rec.chrom %>",
|
13
|
+
"seq:pos": <%= rec.pos %>,
|
14
|
+
"seq:ref": "<%= rec.ref %>",
|
15
|
+
"seq:alt": "<%= rec.alt[0] %>",
|
16
|
+
"dp": <%= rec.info.dp %>
|
17
|
+
},
|
19
18
|
=FOOTER
|
20
|
-
]
|
19
|
+
]
|
20
|
+
}
|
@@ -1,23 +1,22 @@
|
|
1
1
|
=HEADER
|
2
2
|
<% require 'json' %>
|
3
|
-
|
4
|
-
{
|
3
|
+
{
|
5
4
|
"HEADER": {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
"options": <%= options.to_h.to_json %>,
|
6
|
+
"files": <%= ARGV %>,
|
7
|
+
"version": "<%= BIOVCF_VERSION %>"
|
8
|
+
},
|
10
9
|
"COLUMNS": <%= header.column_names.to_json %>,
|
11
|
-
"META": <%= header.meta.to_json
|
12
|
-
|
10
|
+
"META": <%= header.meta.to_json %>,
|
11
|
+
"BODY": [
|
13
12
|
=BODY
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
},
|
13
|
+
{
|
14
|
+
"seq:chr": "<%= rec.chrom %>" ,
|
15
|
+
"seq:pos": <%= rec.pos %> ,
|
16
|
+
"seq:ref": "<%= rec.ref %>" ,
|
17
|
+
"seq:alt": "<%= rec.alt[0] %>"
|
18
|
+
<% if rec.info.dp %> , "dp": <%= rec.info.dp %> <% end %>
|
19
|
+
},
|
22
20
|
=FOOTER
|
23
|
-
]
|
21
|
+
]
|
22
|
+
}
|
@@ -1,41 +1,41 @@
|
|
1
1
|
=HEADER
|
2
2
|
<% require 'json' %>
|
3
|
-
|
4
|
-
{
|
3
|
+
{
|
5
4
|
"HEADER": {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
"options":<%= options.to_h.to_json %>,
|
6
|
+
"files": <%= ARGV %>,
|
7
|
+
"version": "<%= BIOVCF_VERSION %>"
|
8
|
+
},
|
10
9
|
"COLUMNS": <%= header.column_names.to_json %>,
|
11
|
-
"META": <%= header.meta.to_json
|
12
|
-
|
10
|
+
"META": <%= header.meta.to_json %>,
|
11
|
+
"BODY": [
|
13
12
|
=BODY
|
14
|
-
<% sample_num = 0
|
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
|
-
},
|
13
|
+
<% sample_num = 0
|
14
|
+
sample_name = nil
|
15
|
+
sample_size = header.samples.size
|
16
|
+
%>
|
17
|
+
{
|
18
|
+
"seq:chr": "<%= rec.chrom %>" ,
|
19
|
+
"seq:pos": <%= rec.pos %> ,
|
20
|
+
"seq:ref": "<%= rec.ref %>" ,
|
21
|
+
"seq:alt": "<%= rec.alt[0] %>"
|
22
|
+
<% if rec.info.dp %> , "dp": <%= rec.info.dp %> <% end %>,
|
23
|
+
"samples" : {
|
24
|
+
<% rec.each_sample do |s| %>
|
25
|
+
<% if not s.empty?
|
26
|
+
sample_name = header.samples[sample_num]
|
27
|
+
%>
|
28
|
+
<%= (sample_num!=0 ? "," : "" ) %>
|
29
|
+
<% sample_num += 1%>
|
30
|
+
"<%= sample_name %>": {
|
31
|
+
<% header.meta['FORMAT'].each_key do |k| %>
|
32
|
+
"<%= k %>": <%= s[k].to_json %><%= (k==header.meta['FORMAT'].keys.last ? "" : "," ) %>
|
33
|
+
<% end %>
|
34
|
+
}
|
35
|
+
<% end %>
|
36
|
+
<% end %>
|
37
|
+
}
|
38
|
+
},
|
40
39
|
=FOOTER
|
41
|
-
]
|
40
|
+
]
|
41
|
+
}
|
@@ -0,0 +1,237 @@
|
|
1
|
+
##fileformat=VCFv4.1
|
2
|
+
##FILTER=<ID=HaplotypeScoreHigh,Description="HaplotypeScore > 13.0">
|
3
|
+
##FILTER=<ID=LowQual,Description="Low quality">
|
4
|
+
##FILTER=<ID=LowQualityDepth,Description="QD < 2.0">
|
5
|
+
##FILTER=<ID=MQRankSumLow,Description="MQRankSum < -12.5">
|
6
|
+
##FILTER=<ID=MappingQuality,Description="MQ < 40.0">
|
7
|
+
##FILTER=<ID=ReadPosRankSumLow,Description="ReadPosRankSum < -20.0">
|
8
|
+
##FILTER=<ID=SnpCluster,Description="SNPs found in clusters">
|
9
|
+
##FILTER=<ID=StrandBias,Description="FS > 200.0">
|
10
|
+
##FORMAT=<ID=AD,Number=.,Type=Integer,Description="Allelic depths for the ref and alt alleles in the order listed">
|
11
|
+
##FORMAT=<ID=DP,Number=1,Type=Integer,Description="Approximate read depth (reads with MQ=255 or with bad mates are filtered)">
|
12
|
+
##FORMAT=<ID=GQ,Number=1,Type=Integer,Description="Genotype Quality">
|
13
|
+
##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
|
14
|
+
##FORMAT=<ID=PL,Number=G,Type=Integer,Description="Normalized, Phred-scaled likelihoods for genotypes as defined in the VCF specification">
|
15
|
+
##GATKCommandLine=<ID=CombineVariants,Version=3.2-2-gec30cee,Date="Thu Oct 30 13:41:59 CET 2014",Epoch=1414672919266,CommandLineOptions="analysis_type=CombineVariants input_file=[] showFullBamList=false read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=null excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/hpc/cog_bioinf/GENOMES/Homo_sapiens.GRCh37.GATK.illumina/Homo_sapiens.GRCh37.GATK.illumina.fasta nonDeterministicRandomSeed=false disableDithering=false maxRuntime=-1 maxRuntimeUnits=MINUTES downsampling_type=BY_SAMPLE downsample_to_fraction=null downsample_to_coverage=1000 baq=OFF baqGapOpenPenalty=40.0 refactor_NDN_cigar_string=false 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 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 variant=[(RodBindingCollection [(RodBinding name=variant source=/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/tmp/testSubsetExome.filtered_snps.vcf)]), (RodBindingCollection [(RodBinding name=variant2 source=/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/tmp/testSubsetExome.filtered_indels.vcf)])] out=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub genotypemergeoption=UNSORTED filteredrecordsmergetype=KEEP_IF_ANY_UNFILTERED multipleallelesmergetype=BY_TYPE rod_priority_list=null printComplexMerges=false filteredAreUncalled=false minimalVCF=false excludeNonVariants=false setKey=set assumeIdenticalSamples=false minimumN=1 suppressCommandLineHeader=false mergeInfoWithMaxAC=false filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false">
|
16
|
+
##GATKCommandLine=<ID=HaplotypeCaller,Version=3.2-2-gec30cee,Date="Thu Oct 30 13:37:05 CET 2014",Epoch=1414672625371,CommandLineOptions="analysis_type=HaplotypeCaller input_file=[/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/CONTROLP26/mapping/CONTROLP26_dedup.realigned.recalibrated.bam, /hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/CONTROLP25/mapping/CONTROLP25_dedup.realigned.recalibrated.bam] showFullBamList=false read_buffer_size=null phone_home=AWS gatk_key=null tag=NA read_filter=[] intervals=[/hpc/cog_bioinf/data/robert/testIAP/testSubsetExome/tmp/.queue/scatterGather/HaplotypeCaller-1-sg/temp_01_of_12/scatter.intervals] excludeIntervals=null interval_set_rule=UNION interval_merging=ALL interval_padding=0 reference_sequence=/hpc/cog_bioinf/GENOMES/Homo_sapiens.GRCh37.GATK.illumina/Homo_sapiens.GRCh37.GATK.illumina.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 refactor_NDN_cigar_string=false 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 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 out=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub no_cmdline_in_header=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub sites_only=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub bcf=org.broadinstitute.gatk.engine.io.stubs.VariantContextWriterStub likelihoodCalculationEngine=PairHMM heterogeneousKmerSizeResolution=COMBO_MIN graphOutput=null bamOutput=null bam_compression=null disable_bam_indexing=null generate_md5=null simplifyBAM=null bamWriterType=CALLED_HAPLOTYPES dbsnp=(RodBinding name=dbsnp source=/hpc/cog_bioinf/common_scripts/GATK_v2.7/bundle/dbsnp_137.b37.vcf) dontTrimActiveRegions=false maxDiscARExtension=25 maxGGAARExtension=300 paddingAroundIndels=150 paddingAroundSNPs=20 comp=[] annotation=[ClippingRankSumTest, DepthPerSampleHC] excludeAnnotation=[SpanningDeletions, TandemRepeatAnnotator] debug=false useFilteredReadsForAnnotations=false emitRefConfidence=NONE annotateNDA=false heterozygosity=0.001 indel_heterozygosity=1.25E-4 standard_min_confidence_threshold_for_calling=30.0 standard_min_confidence_threshold_for_emitting=15.0 max_alternate_alleles=6 input_prior=[] sample_ploidy=2 genotyping_mode=DISCOVERY alleles=(RodBinding name= source=UNBOUND) contamination_fraction_to_filter=0.0 contamination_fraction_per_sample_file=null p_nonref_model=EXACT_INDEPENDENT exactcallslog=null output_mode=EMIT_VARIANTS_ONLY allSitePLs=false kmerSize=[10, 25] dontIncreaseKmerSizesForCycles=false allowNonUniqueKmersInRef=false numPruningSamples=1 recoverDanglingHeads=false doNotRecoverDanglingTails=false consensus=false GVCFGQBands=[5, 20, 60] indelSizeToEliminateInRefModel=10 min_base_quality_score=10 minPruning=2 gcpHMM=10 includeUmappedReads=false useAllelesTrigger=false phredScaledGlobalReadMismappingRate=45 maxNumHaplotypesInPopulation=128 mergeVariantsViaLD=false pair_hmm_implementation=VECTOR_LOGLESS_CACHING keepRG=null justDetermineActiveRegions=false dontGenotype=false errorCorrectKmers=false debugGraphTransformations=false dontUseSoftClippedBases=false captureAssemblyFailureBAM=false allowCyclesInKmerGraphToGeneratePaths=false noFpga=false errorCorrectReads=false kmerLengthForReadErrorCorrection=25 minObservationsForKmerToBeSolid=20 pcr_indel_model=CONSERVATIVE activityProfileOut=null activeRegionOut=null activeRegionIn=null activeRegionExtension=null forceActive=false activeRegionMaxSize=null bandPassSigma=null min_mapping_quality_score=20 filter_reads_with_N_cigar=false filter_mismatching_base_and_quals=false filter_bases_not_stored=false">
|
17
|
+
##INFO=<ID=AC,Number=A,Type=Integer,Description="Allele count in genotypes, for each ALT allele, in the same order as listed">
|
18
|
+
##INFO=<ID=AF,Number=A,Type=Float,Description="Allele Frequency, for each ALT allele, in the same order as listed">
|
19
|
+
##INFO=<ID=AN,Number=1,Type=Integer,Description="Total number of alleles in called genotypes">
|
20
|
+
##INFO=<ID=BaseQRankSum,Number=1,Type=Float,Description="Z-score from Wilcoxon rank sum test of Alt Vs. Ref base qualities">
|
21
|
+
##INFO=<ID=ClippingRankSum,Number=1,Type=Float,Description="Z-score From Wilcoxon rank sum test of Alt vs. Ref number of hard clipped bases">
|
22
|
+
##INFO=<ID=DB,Number=0,Type=Flag,Description="dbSNP Membership">
|
23
|
+
##INFO=<ID=DP,Number=1,Type=Integer,Description="Approximate read depth; some reads may have been filtered">
|
24
|
+
##INFO=<ID=DS,Number=0,Type=Flag,Description="Were any of the samples downsampled?">
|
25
|
+
##INFO=<ID=FS,Number=1,Type=Float,Description="Phred-scaled p-value using Fisher's exact test to detect strand bias">
|
26
|
+
##INFO=<ID=HaplotypeScore,Number=1,Type=Float,Description="Consistency of the site with at most two segregating haplotypes">
|
27
|
+
##INFO=<ID=InbreedingCoeff,Number=1,Type=Float,Description="Inbreeding coefficient as estimated from the genotype likelihoods per-sample when compared against the Hardy-Weinberg expectation">
|
28
|
+
##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">
|
29
|
+
##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">
|
30
|
+
##INFO=<ID=MQ,Number=1,Type=Float,Description="RMS Mapping Quality">
|
31
|
+
##INFO=<ID=MQ0,Number=1,Type=Integer,Description="Total Mapping Quality Zero Reads">
|
32
|
+
##INFO=<ID=MQRankSum,Number=1,Type=Float,Description="Z-score From Wilcoxon rank sum test of Alt vs. Ref read mapping qualities">
|
33
|
+
##INFO=<ID=QD,Number=1,Type=Float,Description="Variant Confidence/Quality by Depth">
|
34
|
+
##INFO=<ID=ReadPosRankSum,Number=1,Type=Float,Description="Z-score from Wilcoxon rank sum test of Alt vs. Ref read position bias">
|
35
|
+
##INFO=<ID=set,Number=1,Type=String,Description="Source VCF for the merged record in CombineVariants">
|
36
|
+
##contig=<ID=1,length=249250621>
|
37
|
+
##contig=<ID=2,length=243199373>
|
38
|
+
##contig=<ID=3,length=198022430>
|
39
|
+
##contig=<ID=4,length=191154276>
|
40
|
+
##contig=<ID=5,length=180915260>
|
41
|
+
##contig=<ID=6,length=171115067>
|
42
|
+
##contig=<ID=7,length=159138663>
|
43
|
+
##contig=<ID=8,length=146364022>
|
44
|
+
##contig=<ID=9,length=141213431>
|
45
|
+
##contig=<ID=10,length=135534747>
|
46
|
+
##contig=<ID=11,length=135006516>
|
47
|
+
##contig=<ID=12,length=133851895>
|
48
|
+
##contig=<ID=13,length=115169878>
|
49
|
+
##contig=<ID=14,length=107349540>
|
50
|
+
##contig=<ID=15,length=102531392>
|
51
|
+
##contig=<ID=16,length=90354753>
|
52
|
+
##contig=<ID=17,length=81195210>
|
53
|
+
##contig=<ID=18,length=78077248>
|
54
|
+
##contig=<ID=19,length=59128983>
|
55
|
+
##contig=<ID=20,length=63025520>
|
56
|
+
##contig=<ID=21,length=48129895>
|
57
|
+
##contig=<ID=22,length=51304566>
|
58
|
+
##contig=<ID=X,length=155270560>
|
59
|
+
##contig=<ID=Y,length=59373566>
|
60
|
+
##contig=<ID=MT,length=16569>
|
61
|
+
##reference=file:///hpc/cog_bioinf/GENOMES/Homo_sapiens.GRCh37.GATK.illumina/Homo_sapiens.GRCh37.GATK.illumina.fasta
|
62
|
+
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT CONTROLP25 CONTROLP26
|
63
|
+
1 22848972 rs61769198 A C 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
64
|
+
1 33133968 rs2762904 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
65
|
+
1 60466814 rs626251 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
66
|
+
1 60466840 rs35944236 TA T 18.20 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=9.10;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:53,6,0
|
67
|
+
1 62516683 rs2498982 G C 114.46 PASS AC=2;AF=1.00;AN=2;DB;DP=8;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=28.62;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,4:4:12:141,12,0
|
68
|
+
1 66058513 rs1137101 A G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
69
|
+
1 95709821 rs259358 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
70
|
+
1 109806834 rs6698843 C T 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:72,6,0 ./.
|
71
|
+
1 114354942 rs3789604 T G 47.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.58;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:73,6,0
|
72
|
+
1 144873962 rs11341221 CT C 46.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=58.52;MQ0=0;QD=23.07;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:81,6,0 ./.
|
73
|
+
1 151733335 rs8480 T G 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:71,6,0 ./.
|
74
|
+
1 157516779 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
75
|
+
1 197479688 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
76
|
+
1 228005073 rs200455452 C T 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
77
|
+
1 228465370 rs867599 T G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
78
|
+
1 231488524 rs2437150 C T 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
79
|
+
1 235505313 rs3841735 A AT 26.14 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=13.07;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:61,6,0 ./.
|
80
|
+
1 237951451 rs2256242 A G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
81
|
+
2 27682309 rs61747073 C T 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
82
|
+
2 32667182 rs60197615 G C 40.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:66,6,0
|
83
|
+
2 37406680 rs10205833 C G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
84
|
+
2 112705157 rs3761701 T C 40.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:66,6,0
|
85
|
+
2 113513825 rs6731822 T C 41.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:67,6,0 ./.
|
86
|
+
2 152403960 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
87
|
+
2 207998800 rs2284934 C T 40.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:66,6,0
|
88
|
+
3 8667896 rs355058 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
89
|
+
3 57368861 . CT C 32.13 PASS AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=16.07;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:67,6,0
|
90
|
+
3 62478014 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|
91
|
+
3 75787726 rs1962893 G A 20 LowQual AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,1:1:3:45,3,0 ./.
|
92
|
+
3 75787739 rs141238251 A T 20 LowQual AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,1:1:3:45,3,0 ./.
|
93
|
+
3 101484335 rs2625282 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
94
|
+
3 119434527 rs6438544 G C 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=29.45;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,1:1:6:70,6,0
|
95
|
+
3 119434528 . C A 44.17 PASS AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
96
|
+
3 121168152 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|
97
|
+
3 121822564 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
98
|
+
3 122437321 rs7645033 T C 55.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=18.57;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:82,9,0
|
99
|
+
3 134225969 rs9827878 T C 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:72,6,0
|
100
|
+
3 139244744 . T C 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
101
|
+
4 48037926 rs13116684 A G 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
102
|
+
4 100572396 . T C 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
103
|
+
5 32400266 rs1051489 A G 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
104
|
+
5 64070617 rs140062546 A AAATTATGAC 55.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=27.57;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:90,6,0
|
105
|
+
5 74442920 rs6888707 A G 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:72,6,0 ./.
|
106
|
+
5 89990324 rs1878878 A G 32.21 PASS AC=1;AF=0.500;AN=2;BaseQRankSum=0.736;ClippingRankSum=-0.736;DB;DP=6;FS=0.000;MLEAC=1;MLEAF=0.500;MQ=60.00;MQ0=0;MQRankSum=-0.736;QD=10.74;ReadPosRankSum=0.736;set=Intersection GT:AD:DP:GQ:PL 0/1:1,2:3:26:59,0,26 ./.
|
107
|
+
5 102894673 rs34468716 T C 20.21 LowQual AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=0.736;QD=10.11;ReadPosRankSum=0.736;set=FilteredInAll GT:AD:DP:GQ:PL 0/0:1,0:1:3:0,3,34 1/1:0,2:2:6:49,6,0
|
108
|
+
5 145519821 rs17493851 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
109
|
+
5 178139442 rs1132338 T G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
110
|
+
5 178996435 rs11743261 A G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
111
|
+
6 335175 rs2671431 A T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
112
|
+
6 12122645 rs6900196 A G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
113
|
+
6 29407970 rs2074469 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
114
|
+
6 29523676 rs8337 C G 47.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.58;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:73,6,0
|
115
|
+
6 47649222 rs8180544 T G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
116
|
+
6 56417282 rs4715630 C T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
117
|
+
6 90448092 rs4140446 C T 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
118
|
+
6 106992464 rs1799693 A G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
119
|
+
6 121632008 rs9372653 T A 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
120
|
+
6 138754323 rs2327891 A G 79.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=26.61;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 1/1:0,1:1:3:35,3,0
|
121
|
+
6 159188128 rs2242318 A G 74.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=24.90;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:101,9,0
|
122
|
+
6 160962177 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
123
|
+
7 6370144 rs1043965 G A 32.21 PASS AC=1;AF=0.500;AN=2;BaseQRankSum=-0.736;ClippingRankSum=-0.736;DB;DP=6;FS=0.000;MLEAC=1;MLEAF=0.500;MQ=60.00;MQ0=0;MQRankSum=0.736;QD=10.74;ReadPosRankSum=-0.736;set=Intersection GT:AD:DP:GQ:PL ./. 0/1:1,2:3:26:59,0,26
|
124
|
+
7 12376811 rs2192828 A C 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
125
|
+
7 15584409 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
126
|
+
7 22202052 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
127
|
+
7 25266626 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
128
|
+
7 31617733 rs6945679 T C 91.46 PASS AC=2;AF=1.00;AN=2;DB;DP=8;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.87;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,4:4:12:118,12,0
|
129
|
+
7 42976789 rs630191 A G 58.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=19.61;set=Intersection GT:AD:DP:GQ:PL 1/1:0,1:1:3:35,3,0 1/1:0,2:2:6:49,6,0
|
130
|
+
7 92762681 rs1029357 A G 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:68,6,0 ./.
|
131
|
+
7 100551840 rs78273697 T A 64.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=32.08;set=filterInvariant-variant2 GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:90,6,0
|
132
|
+
7 100551842 rs75365561 C T 64.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=32.08;set=filterInvariant-variant2 GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:90,6,0
|
133
|
+
7 100551843 rs75524285 T C 100.84 PASS AC=4;AF=1.00;AN=4;DB;DP=4;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=29.63;set=filterInvariant-variant2 GT:AD:DP:GQ:PL 1/1:.:.:3:36,3,0 1/1:0,2:2:6:90,6,0
|
134
|
+
7 100551849 rs77242346 A T 100.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=33.61;set=filterInvariant-variant2 GT:AD:DP:GQ:PL 1/1:0,1:1:3:36,3,0 1/1:0,2:2:6:90,6,0
|
135
|
+
7 100552644 rs2904850 C A 39.17 PASS AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=-0.736;QD=19.59;ReadPosRankSum=-0.736;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:68,6,0 0/0:1,0:1:3:0,3,36
|
136
|
+
7 100552788 rs73398800 C T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
137
|
+
7 100552867 rs73714266 T C 44.42 PASS AC=4;AF=1.00;AN=4;DB;DP=4;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.21;set=Intersection GT:AD:DP:GQ:PL 1/1:0,1:1:3:35,3,0 1/1:0,1:1:3:34,3,0
|
138
|
+
7 142460335 rs201550522 A G 20 LowQual;MappingQuality AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=31.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
139
|
+
7 142460339 rs200973660 G A 20 LowQual;MappingQuality AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=31.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
140
|
+
7 151970856 rs10454320 T A 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=42.05;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
141
|
+
7 151970931 rs56850341 G A 29.18 LowQual;MappingQuality AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=34.12;MQ0=0;QD=14.59;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:55,6,0 ./.
|
142
|
+
7 154862621 rs6320 T A 38.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=19.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:64,6,0 ./.
|
143
|
+
8 29023297 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
144
|
+
9 390512 rs2297075 C T 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
145
|
+
9 21334694 . T C 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
146
|
+
9 79117556 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
147
|
+
9 86465131 rs58077086 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=44.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
148
|
+
9 109687403 rs17723637 A G 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:72,6,0 ./.
|
149
|
+
9 129595895 rs3118994 T C 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
150
|
+
10 30728101 rs1042058 T C 38.17 PASS AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=-0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=-0.736;QD=19.09;ReadPosRankSum=-0.736;set=Intersection GT:AD:DP:GQ:PL 0/0:1,0:1:3:0,3,35 1/1:0,2:2:6:67,6,0
|
151
|
+
10 45958881 rs2291429 A G 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:71,6,0
|
152
|
+
10 70405855 rs3998860 A G 79.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=26.57;set=Intersection GT:AD:DP:GQ:PL 1/1:0,3:3:9:106,9,0 ./.
|
153
|
+
10 95381773 rs701865 T A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
154
|
+
10 105762591 rs805657 G A 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:68,6,0 ./.
|
155
|
+
10 116013432 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
156
|
+
10 126691605 rs201760950 C A 20 LowQual;SnpCluster AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
157
|
+
10 126691608 rs200173220 C T 20 LowQual;SnpCluster AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
158
|
+
10 126691631 rs3198936 T A 20 LowQual;SnpCluster AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
159
|
+
10 126691634 rs75794788 T A 20 LowQual;SnpCluster AC=2;AF=1.00;AN=2;DB;DP=2;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.00;MQ0=0;QD=20.00;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,1:1:3:45,3,0
|
160
|
+
11 2929552 rs429886 A G 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:72,6,0
|
161
|
+
11 11373635 rs1056963 C T 40.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=50.60;MQ0=0;QD=20.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:66,6,0
|
162
|
+
11 55872657 rs28681529 A C 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.50;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:71,6,0
|
163
|
+
11 63883985 rs614397 T C 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
164
|
+
11 63885632 rs4379854 A G 56.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=18.90;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:83,9,0
|
165
|
+
11 74676794 rs514534 G C 59.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=19.95;set=Intersection GT:AD:DP:GQ:PL 1/1:0,1:1:3:36,3,0 1/1:0,2:2:6:49,6,0
|
166
|
+
11 112041128 rs45579043 TTTTGTCCTG T 55.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=27.57;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:90,6,0
|
167
|
+
11 124266912 rs28398895 A G 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:72,6,0
|
168
|
+
11 130064131 . G A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
169
|
+
12 2788879 rs1051375 G A 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
170
|
+
12 10588581 rs28403159 T C 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=40.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
171
|
+
12 11214360 rs73260771 C T 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:71,6,0 ./.
|
172
|
+
12 22646247 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
173
|
+
12 30823971 rs1054426 A G 41.17 PASS AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=-0.736;QD=20.59;ReadPosRankSum=0.736;set=Intersection GT:AD:DP:GQ:PL 0/0:1,0:1:3:0,3,35 1/1:0,2:2:6:70,6,0
|
174
|
+
12 53722128 rs7139272 G A 40.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:66,6,0 ./.
|
175
|
+
12 55820121 rs6581046 C T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
176
|
+
12 80889165 rs145970310 T TTTG 55.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=27.57;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:90,6,0 ./.
|
177
|
+
12 82792942 rs10506873 A G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
178
|
+
12 96653501 rs4762144 C T 56.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=18.90;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:83,9,0
|
179
|
+
12 123067501 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
180
|
+
13 32913055 rs206075 A G 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:68,6,0 ./.
|
181
|
+
13 46170719 rs142875900 CCCAGATACTCTTCCTCCT C 55.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=49.84;MQ0=0;QD=27.57;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:90,6,0 ./.
|
182
|
+
13 103514737 rs201185418 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
183
|
+
13 107145463 rs7995379 G C 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:71,6,0
|
184
|
+
14 21469151 rs2234636 T C 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
185
|
+
14 21831112 rs10146717 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
186
|
+
14 45623122 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
187
|
+
14 57101682 rs913742 A G 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:71,6,0
|
188
|
+
14 70515779 rs61977411 G A 55.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=18.57;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:82,9,0
|
189
|
+
14 81610583 rs1991517 G C 59.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=19.95;set=Intersection GT:AD:DP:GQ:PL 1/1:0,1:1:3:36,3,0 1/1:0,2:2:6:49,6,0
|
190
|
+
14 88651962 rs17762463 C T 41.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:67,6,0
|
191
|
+
14 105407798 rs4465542 T C 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:68,6,0 ./.
|
192
|
+
15 22368862 rs1835183 G A 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
193
|
+
15 44184197 rs112105930 C T 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
194
|
+
15 65903398 rs4366668 G A 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
195
|
+
15 69728949 rs3825858 A G 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|
196
|
+
16 3646215 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
197
|
+
16 11001770 rs34654419 G T 56.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=18.90;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,3:3:9:83,9,0
|
198
|
+
16 14340388 . C A 20.21 LowQual AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=0.736;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=0.736;QD=10.11;ReadPosRankSum=0.736;set=FilteredInAll GT:AD:DP:GQ:PL 0/0:1,0:1:3:0,3,37 1/1:0,2:2:6:49,6,0
|
199
|
+
16 56436917 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
200
|
+
16 82033612 rs16956174 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
201
|
+
16 88712511 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
202
|
+
17 3632836 rs1716 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
203
|
+
17 8363486 . C A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|
204
|
+
17 9515777 rs6503235 G A 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
205
|
+
18 31324934 rs7232237 A G 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:71,6,0 ./.
|
206
|
+
18 56203447 rs3809979 A G 83.84 PASS AC=4;AF=1.00;AN=4;DB;DP=6;FS=0.000;MLEAC=4;MLEAF=1.00;MQ=60.00;MQ0=0;QD=27.95;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:72,6,0 1/1:0,1:1:3:37,3,0
|
207
|
+
19 3434413 rs2302220 C G 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
208
|
+
19 6413578 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
209
|
+
19 11221454 rs2738442 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
210
|
+
19 21492062 rs547516 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=56.14;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
211
|
+
19 22952111 rs34726149 A G 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
212
|
+
19 33444511 rs80283382 T C 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:71,6,0 ./.
|
213
|
+
19 38378539 rs10422056 G C 41.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=20.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:67,6,0
|
214
|
+
19 39915637 rs31727 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
215
|
+
19 48389425 rs11083907 A G 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:69,6,0
|
216
|
+
19 53085659 rs366793 C T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
217
|
+
19 53344051 rs112227284 T C 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
218
|
+
19 53912242 rs10426347 G A 76.71 PASS AC=2;AF=1.00;AN=2;DB;DP=6;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=25.57;set=Intersection GT:AD:DP:GQ:PL 1/1:0,3:3:9:103,9,0 ./.
|
219
|
+
19 55597421 . A G 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
220
|
+
19 57931553 rs10417533 C T 20.21 LowQual AC=2;AF=0.500;AN=4;BaseQRankSum=-0.736;ClippingRankSum=-0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=60.00;MQ0=0;MQRankSum=0.736;QD=10.11;ReadPosRankSum=0.736;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 0/0:1,0:1:3:0,3,33
|
221
|
+
20 1356261 rs6074549 G C 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:71,6,0 ./.
|
222
|
+
20 29625877 rs7266938 G A 34.17 PASS AC=2;AF=0.500;AN=4;BaseQRankSum=0.736;ClippingRankSum=-0.736;DB;DP=6;FS=0.000;MLEAC=3;MLEAF=0.750;MQ=46.65;MQ0=0;MQRankSum=-0.736;QD=17.09;ReadPosRankSum=0.736;set=Intersection GT:AD:DP:GQ:PL 0/0:1,0:1:3:0,3,33 1/1:0,2:2:6:63,6,0
|
223
|
+
20 29628431 rs11152458 C T 42.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=49.80;MQ0=0;QD=21.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:68,6,0
|
224
|
+
20 44839078 . A T 44.17 PASS AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:70,6,0
|
225
|
+
21 46957794 rs1051266 T C 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
226
|
+
21 47786817 rs2839228 C G 47.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.58;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:73,6,0
|
227
|
+
22 22550510 rs2073448 T G 45.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.59;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:71,6,0
|
228
|
+
22 22569448 rs5750741 T A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|
229
|
+
22 30771554 rs2015035 T G 46.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=23.08;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:72,6,0 ./.
|
230
|
+
22 36587845 rs5845253 A ACT 55.13 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=27.57;set=Intersection GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:90,6,0
|
231
|
+
22 40800544 rs2235318 C T 44.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=22.09;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:70,6,0 ./.
|
232
|
+
22 41075543 rs133072 A G 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
233
|
+
22 43936213 . G A 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
234
|
+
22 43936228 . G T 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
235
|
+
X 55172537 rs1047054 G A 43.17 PASS AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=21.59;set=Intersection GT:AD:DP:GQ:PL 1/1:0,2:2:6:69,6,0 ./.
|
236
|
+
X 107911706 . T C 23.19 LowQual AC=2;AF=1.00;AN=2;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL ./. 1/1:0,2:2:6:49,6,0
|
237
|
+
X 134713855 rs2298301 G A 23.19 LowQual AC=2;AF=1.00;AN=2;DB;DP=4;FS=0.000;MLEAC=2;MLEAF=1.00;MQ=60.00;MQ0=0;QD=11.60;set=FilteredInAll GT:AD:DP:GQ:PL 1/1:0,2:2:6:49,6,0 ./.
|