bio-vcf 0.9.2 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +1 -21
- data/LICENSE.txt +1 -1
- data/README.md +107 -73
- data/RELEASE_NOTES.md +20 -0
- data/RELEASE_NOTES.md~ +11 -0
- data/VERSION +1 -1
- data/bin/bio-vcf +49 -30
- data/bio-vcf.gemspec +1 -1
- data/features/cli.feature +4 -1
- data/features/diff_count.feature +0 -1
- data/features/step_definitions/cli-feature.rb +13 -9
- data/features/step_definitions/diff_count.rb +1 -1
- data/features/step_definitions/somaticsniper.rb +1 -1
- data/lib/bio-vcf/pcows.rb +31 -25
- data/lib/bio-vcf/vcffile.rb +46 -0
- data/lib/bio-vcf/vcfgenotypefield.rb +20 -20
- data/lib/bio-vcf/vcfheader.rb +29 -0
- data/lib/bio-vcf/vcfrecord.rb +5 -3
- data/lib/bio-vcf/vcfsample.rb +3 -1
- data/test/data/input/empty.vcf +2 -0
- data/test/data/regression/empty-stderr.new +12 -0
- data/test/data/regression/empty.new +2 -0
- data/test/data/regression/empty.ref +2 -0
- data/test/data/regression/eval_once-stderr.new +2 -2
- data/test/data/regression/eval_r.info.dp-stderr.new +9 -7
- data/test/data/regression/ifilter_s.dp-stderr.new +9 -7
- data/test/data/regression/pass1-stderr.new +9 -7
- data/test/data/regression/r.info.dp-stderr.new +4 -8
- data/test/data/regression/r.info.dp.new +0 -33
- data/test/data/regression/rewrite.info.sample-stderr.new +9 -7
- data/test/data/regression/s.dp-stderr.new +9 -7
- data/test/data/regression/seval_s.dp-stderr.new +9 -7
- data/test/data/regression/sfilter_seval_s.dp-stderr.new +9 -7
- data/test/data/regression/thread4-stderr.new +9 -7
- data/test/data/regression/thread4_4-stderr.new +25 -44
- data/test/data/regression/thread4_4.new +0 -20
- data/test/data/regression/thread4_4_failed_filter-stderr.new +1 -1
- data/test/data/regression/thread4_4_failed_filter-stderr.ref +1 -1
- data/test/data/regression/vcf2json_full_header-stderr.new +9 -7
- data/test/data/regression/vcf2json_use_meta-stderr.new +9 -7
- metadata +11 -7
- data/features/#cli.feature# +0 -71
- data/features/filter.feature~ +0 -35
- data/test/stress/stress_test.sh~ +0 -8
@@ -0,0 +1,46 @@
|
|
1
|
+
module BioVcf
|
2
|
+
# This class abstracts a VCF file that can be iterated.
|
3
|
+
# The VCF can be plain text or compressed with gzip
|
4
|
+
# Note that files compressed with bgzip will not work, as thie ruby implementation of Zlib don't allow concatenated files
|
5
|
+
class VCFfile
|
6
|
+
|
7
|
+
def initialize(file: "", is_gz: true)
|
8
|
+
@file = file
|
9
|
+
@is_gz = is_gz
|
10
|
+
end
|
11
|
+
|
12
|
+
def parseVCFheader(head_line="")
|
13
|
+
m=/##INFO=<ID=(.+),Number=(.+),Type=(.+),Description="(.+)">/.match(head_line)
|
14
|
+
{:id=>m[1],:number=>m[2],:type=>m[3],:desc=>m[4]}
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
#Returns an enum that can be used as an iterator.
|
19
|
+
def each
|
20
|
+
return enum_for(:each) unless block_given?
|
21
|
+
io = nil
|
22
|
+
if @is_gz
|
23
|
+
infile = open(@file)
|
24
|
+
io = Zlib::GzipReader.new(infile)
|
25
|
+
else
|
26
|
+
io = File.open(@file)
|
27
|
+
end
|
28
|
+
|
29
|
+
header = BioVcf::VcfHeader.new
|
30
|
+
io.each_line do |line|
|
31
|
+
line.chomp!
|
32
|
+
if line =~ /^##fileformat=/
|
33
|
+
header.add(line)
|
34
|
+
next
|
35
|
+
end
|
36
|
+
if line =~ /^#/
|
37
|
+
header.add(line)
|
38
|
+
next
|
39
|
+
end
|
40
|
+
fields = BioVcf::VcfLine.parse(line)
|
41
|
+
rec = BioVcf::VcfRecord.new(fields,header)
|
42
|
+
yield rec
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -11,7 +11,7 @@ module BioVcf
|
|
11
11
|
end
|
12
12
|
end
|
13
13
|
|
14
|
-
# Helper class for a list of (variant) values, such as A,G.
|
14
|
+
# Helper class for a list of (variant) values, such as A,G.
|
15
15
|
# The [] function does the hard work. You can pass in an index (integer)
|
16
16
|
# or nucleotide which translates to an index.
|
17
17
|
# (see ./features for examples)
|
@@ -20,7 +20,7 @@ module BioVcf
|
|
20
20
|
@alt = alt
|
21
21
|
@list = list.split(/,/).map{|i| i.to_i}
|
22
22
|
end
|
23
|
-
|
23
|
+
|
24
24
|
def [] idx
|
25
25
|
if idx.kind_of?(Integer)
|
26
26
|
# return a value
|
@@ -67,7 +67,7 @@ module BioVcf
|
|
67
67
|
@alt = alt
|
68
68
|
@list = list.split(/,/).map{|i| i.to_i}
|
69
69
|
end
|
70
|
-
|
70
|
+
|
71
71
|
def [] idx
|
72
72
|
if idx.kind_of?(Integer)
|
73
73
|
@list[idx].to_i
|
@@ -87,15 +87,15 @@ module BioVcf
|
|
87
87
|
end
|
88
88
|
|
89
89
|
# Return the max value on the nucleotides in the list (typically rec.alt)
|
90
|
-
def max
|
90
|
+
def max
|
91
91
|
@list.reduce(0){ |memo,v| (v>memo ? v : memo) }
|
92
92
|
end
|
93
93
|
|
94
|
-
def min
|
94
|
+
def min
|
95
95
|
@list.reduce(MAXINT){ |memo,v| (v<memo ? v : memo) }
|
96
96
|
end
|
97
97
|
|
98
|
-
def sum
|
98
|
+
def sum
|
99
99
|
@list.reduce(0){ |memo,v| v+memo }
|
100
100
|
end
|
101
101
|
end
|
@@ -129,14 +129,14 @@ module BioVcf
|
|
129
129
|
!empty?
|
130
130
|
end
|
131
131
|
|
132
|
-
def dp4
|
133
|
-
ilist('DP4')
|
132
|
+
def dp4
|
133
|
+
ilist('DP4')
|
134
134
|
end
|
135
|
-
def ad
|
136
|
-
ilist('AD')
|
135
|
+
def ad
|
136
|
+
ilist('AD')
|
137
137
|
end
|
138
|
-
def pl
|
139
|
-
ilist('PL')
|
138
|
+
def pl
|
139
|
+
ilist('PL')
|
140
140
|
end
|
141
141
|
|
142
142
|
def bcount
|
@@ -154,7 +154,7 @@ module BioVcf
|
|
154
154
|
def gti?
|
155
155
|
not VcfValue::empty?(fetch_value("GT"))
|
156
156
|
end
|
157
|
-
|
157
|
+
|
158
158
|
def gti
|
159
159
|
gt.split(/[\/\|]/).map { |g| g.to_i }
|
160
160
|
end
|
@@ -178,11 +178,11 @@ module BioVcf
|
|
178
178
|
else
|
179
179
|
v = values[fetch(m.to_s.upcase)]
|
180
180
|
return nil if VcfValue::empty?(v)
|
181
|
-
|
182
|
-
|
181
|
+
return v.to_i if v =~ /^\d+$/
|
182
|
+
return v.to_f if v =~ /^\d+\.\d+$/
|
183
183
|
v
|
184
184
|
end
|
185
|
-
end
|
185
|
+
end
|
186
186
|
|
187
187
|
private
|
188
188
|
|
@@ -200,7 +200,7 @@ module BioVcf
|
|
200
200
|
def ilist name
|
201
201
|
v = fetch_value(name)
|
202
202
|
return nil if not v
|
203
|
-
v.split(',').map{|i| i.to_i}
|
203
|
+
v.split(',').map{|i| i.to_i}
|
204
204
|
end
|
205
205
|
|
206
206
|
end
|
@@ -222,11 +222,11 @@ module BioVcf
|
|
222
222
|
@samples[name] ||= VcfGenotypeField.new(@fields[@sample_index[name]],@format,@header,@ref,@alt)
|
223
223
|
rescue TypeError
|
224
224
|
$stderr.print "Unknown field name <#{name}> in record, did you mean r.info.#{name}?\n"
|
225
|
-
raise
|
225
|
+
raise
|
226
226
|
end
|
227
227
|
end
|
228
228
|
|
229
|
-
def method_missing(m, *args, &block)
|
229
|
+
def method_missing(m, *args, &block)
|
230
230
|
name = m.to_s
|
231
231
|
if name =~ /\?$/
|
232
232
|
# test for valid sample
|
@@ -234,7 +234,7 @@ module BioVcf
|
|
234
234
|
else
|
235
235
|
@samples[name] ||= VcfGenotypeField.new(@fields[@sample_index[name]],@format,@header,@ref,@alt)
|
236
236
|
end
|
237
|
-
end
|
237
|
+
end
|
238
238
|
|
239
239
|
end
|
240
240
|
end
|
data/lib/bio-vcf/vcfheader.rb
CHANGED
@@ -39,6 +39,7 @@ module BioVcf
|
|
39
39
|
@lines = []
|
40
40
|
@field = {}
|
41
41
|
@meta = nil
|
42
|
+
@cached_filter_index = {}
|
42
43
|
end
|
43
44
|
|
44
45
|
# Add a new field to the header
|
@@ -102,6 +103,34 @@ module BioVcf
|
|
102
103
|
index
|
103
104
|
end
|
104
105
|
|
106
|
+
# Give a list of samples (by index and/or name) and return 0-based index values
|
107
|
+
# The cache has to be able to hanle multiple lists - that is why it is a hash.
|
108
|
+
def sample_subset_index list
|
109
|
+
cached = @cached_filter_index[list]
|
110
|
+
if cached
|
111
|
+
l = cached
|
112
|
+
else
|
113
|
+
l = []
|
114
|
+
list = samples_index_array() if not list
|
115
|
+
list.each { |i|
|
116
|
+
value =
|
117
|
+
begin
|
118
|
+
Integer(i)
|
119
|
+
rescue
|
120
|
+
idx = samples.index(i)
|
121
|
+
if idx != nil
|
122
|
+
idx
|
123
|
+
else
|
124
|
+
raise "Unknown sample name '#{i}'"
|
125
|
+
end
|
126
|
+
end
|
127
|
+
l << value
|
128
|
+
}
|
129
|
+
@cached_filter_index[list] = l
|
130
|
+
end
|
131
|
+
l
|
132
|
+
end
|
133
|
+
|
105
134
|
# Look for a line in the header with the field name and return the
|
106
135
|
# value, otherwise return nil
|
107
136
|
def find_field name
|
data/lib/bio-vcf/vcfrecord.rb
CHANGED
@@ -199,15 +199,15 @@ module BioVcf
|
|
199
199
|
end
|
200
200
|
|
201
201
|
def sample_by_index i
|
202
|
-
# p @fields
|
203
202
|
raise "Can not index sample on parameter <#{i}>" if not i.kind_of?(Integer)
|
204
203
|
@sample_by_index[i] ||= VcfGenotypeField.new(@fields[i+9],format,@header,ref,alt)
|
205
204
|
end
|
206
205
|
|
207
206
|
# Walk the samples. list contains an Array of int (the index)
|
208
207
|
def each_sample(list = nil)
|
209
|
-
|
210
|
-
|
208
|
+
@header.sample_subset_index(list).each { |i|
|
209
|
+
yield VcfSample::Sample.new(self,sample_by_index(i))
|
210
|
+
}
|
211
211
|
end
|
212
212
|
|
213
213
|
def samples
|
@@ -250,6 +250,7 @@ module BioVcf
|
|
250
250
|
$stderr.print "RECORD ERROR!\n"
|
251
251
|
$stderr.print [@fields],"\n"
|
252
252
|
$stderr.print expr,"\n"
|
253
|
+
$stderr.print "To ignore this error use the -i switch!\n"
|
253
254
|
end
|
254
255
|
if ignore_missing_data
|
255
256
|
$stderr.print e.message if not quiet
|
@@ -283,6 +284,7 @@ module BioVcf
|
|
283
284
|
$stderr.print "RECORD ERROR!\n"
|
284
285
|
$stderr.print [@fields],"\n"
|
285
286
|
$stderr.print expr,"\n"
|
287
|
+
$stderr.print "To ignore this error use the -i switch!\n"
|
286
288
|
end
|
287
289
|
if ignore_missing_data
|
288
290
|
$stderr.print e.message if not quiet
|
data/lib/bio-vcf/vcfsample.rb
CHANGED
@@ -3,7 +3,7 @@ module BioVcf
|
|
3
3
|
|
4
4
|
# Check whether a sample is empty (on the raw string value)
|
5
5
|
def VcfSample::empty? s
|
6
|
-
s==nil or s == './.' or s == '' or s[0..2]=='./.'
|
6
|
+
s==nil or s == './.' or s == '' or s[0..2]=='./.' or s[0..1] == '.:'
|
7
7
|
end
|
8
8
|
|
9
9
|
class Sample
|
@@ -40,6 +40,7 @@ module BioVcf
|
|
40
40
|
# Split GT into index values
|
41
41
|
def gti
|
42
42
|
v = fetch_values("GT")
|
43
|
+
v = './.' if v == '.' #In case that you have a single missing value, make both as missing.
|
43
44
|
v.split(/[\/\|]/).map{ |v| (v=='.' ? nil : v.to_i) }
|
44
45
|
end
|
45
46
|
|
@@ -47,6 +48,7 @@ module BioVcf
|
|
47
48
|
v = fetch_values("GT")
|
48
49
|
return case v
|
49
50
|
when nil then nil
|
51
|
+
when '.' then nil
|
50
52
|
when './.' then nil
|
51
53
|
when '0/0' then 0
|
52
54
|
when '0/1' then 1
|
@@ -0,0 +1,12 @@
|
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Options: {:show_help=>false, :source=>"https://github.com/pjotrp/bioruby-vcf", :version=>"0.9.4 (Pjotr Prins)", :date=>"2020-12-22 11:30:38 +0000", :thread_lines=>40000, :timeout=>5}
|
3
|
+
Waiting up to 5 seconds for pid=30726 to complete /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf
|
4
|
+
OK pid=30726, processing starts of /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf
|
5
|
+
Processing remaining output...
|
6
|
+
Trying: [[30726, 1, "/tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf"]]
|
7
|
+
Set lock on [[30726, 1, "/tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf"]]
|
8
|
+
Processing output file /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf (blocking)
|
9
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf
|
10
|
+
Trying to remove /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf.keep
|
11
|
+
Removing /tmp/bio-vcf_20201222-30724-19xxgvd/000001-bio-vcf.keep
|
12
|
+
Removing dir /tmp/bio-vcf_20201222-30724-19xxgvd
|
@@ -1,2 +1,2 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Removing dir /tmp/bio-
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Removing dir /tmp/bio-vcf_20201222-30676-128vka8
|
@@ -1,8 +1,10 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=30642 to complete /tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf
|
3
3
|
Processing remaining output...
|
4
|
-
Trying: [[
|
5
|
-
Set lock on [[
|
6
|
-
Processing output file /tmp/bio-
|
7
|
-
|
8
|
-
|
4
|
+
Trying: [[30642, 1, "/tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf"]]
|
5
|
+
Set lock on [[30642, 1, "/tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf"]]
|
6
|
+
Processing output file /tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf (blocking)
|
7
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf
|
8
|
+
Trying to remove /tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf.keep
|
9
|
+
Removing /tmp/bio-vcf_20201222-30640-gf6uns/000001-bio-vcf.keep
|
10
|
+
Removing dir /tmp/bio-vcf_20201222-30640-gf6uns
|
@@ -1,5 +1,5 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=30633 to complete /tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf
|
3
3
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
4
4
|
[:filter, "s.dp>100"]
|
5
5
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
@@ -25,8 +25,10 @@ Waiting up to 180 seconds for pid=9369 to complete /tmp/bio-vcf_20160122-9367-zh
|
|
25
25
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
26
26
|
[:filter, "s.dp>100"]
|
27
27
|
Processing remaining output...
|
28
|
-
Trying: [[
|
29
|
-
Set lock on [[
|
30
|
-
Processing output file /tmp/bio-
|
31
|
-
|
32
|
-
|
28
|
+
Trying: [[30633, 1, "/tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf"]]
|
29
|
+
Set lock on [[30633, 1, "/tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf"]]
|
30
|
+
Processing output file /tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf (blocking)
|
31
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf
|
32
|
+
Trying to remove /tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf.keep
|
33
|
+
Removing /tmp/bio-vcf_20201222-30631-1lij1nd/000001-bio-vcf.keep
|
34
|
+
Removing dir /tmp/bio-vcf_20201222-30631-1lij1nd
|
@@ -1,8 +1,10 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=30735 to complete /tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf
|
3
3
|
Processing remaining output...
|
4
|
-
Trying: [[
|
5
|
-
Set lock on [[
|
6
|
-
Processing output file /tmp/bio-
|
7
|
-
|
8
|
-
|
4
|
+
Trying: [[30735, 1, "/tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf"]]
|
5
|
+
Set lock on [[30735, 1, "/tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf"]]
|
6
|
+
Processing output file /tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf (blocking)
|
7
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf
|
8
|
+
Trying to remove /tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf.keep
|
9
|
+
Removing /tmp/bio-vcf_20201222-30733-1xa4emu/000001-bio-vcf.keep
|
10
|
+
Removing dir /tmp/bio-vcf_20201222-30733-1xa4emu
|
@@ -1,8 +1,4 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
3
|
-
|
4
|
-
|
5
|
-
Set lock on [[9246, 1, "/tmp/bio-vcf_20160122-9244-jah911/000001-bio-vcf"]]
|
6
|
-
Processing output file /tmp/bio-vcf_20160122-9244-jah911/000001-bio-vcf (blocking)
|
7
|
-
Removing /tmp/bio-vcf_20160122-9244-jah911/000001-bio-vcf
|
8
|
-
Removing dir /tmp/bio-vcf_20160122-9244-jah911
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=31046 to complete /tmp/bio-vcf_20201222-31044-fq0sit/000001-bio-vcf
|
3
|
+
ERROR:
|
4
|
+
Removing dir /tmp/bio-vcf_20201222-31044-fq0sit
|
@@ -112,36 +112,3 @@
|
|
112
112
|
##contig=<ID=GL000192.1,length=547496,assembly=b37>
|
113
113
|
##reference=file:human_g1k_v37.fasta
|
114
114
|
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT Original s1t1 s2t1 s3t1 s1t2 s2t2 s3t2
|
115
|
-
1 10257 . A C 77.69 . AC=1;AF=0.071;AN=14;BaseQRankSum=-0.066;DP=1518;Dels=0.00;FS=24.214;HaplotypeScore=226.5209;MLEAC=1;MLEAF=0.071;MQ=25.00;MQ0=329;MQRankSum=-1.744;QD=0.37;ReadPosRankSum=1.551 GT:AD:DP:GQ:PL 0/0:151,8:159:99:0,195,2282 0/0:219,22:242:99:0,197,2445 0/0:227,22:249:90:0,90,2339 0/0:226,22:249:99:0,159,2695 0/0:166,18:186:99:0,182,1989 0/1:185,27:212:99:111,0,2387 0/0:201,15:218:24:0,24,1972
|
116
|
-
1 10291 . C T 1031.89 . AC=7;AF=0.500;AN=14;BaseQRankSum=4.367;DP=1433;Dels=0.00;FS=0.696;HaplotypeScore=101.0885;MLEAC=7;MLEAF=0.500;MQ=26.96;MQ0=225;MQRankSum=0.087;QD=0.72;ReadPosRankSum=-1.640 GT:AD:DP:GQ:PL 0/1:145,16:165:23:23,0,491 0/1:218,26:249:29:29,0,611 0/1:214,30:249:99:145,0,801 0/1:213,32:247:20:20,0,1031 0/1:122,36:161:99:347,0,182 0/1:131,27:163:99:255,0,508 0/1:156,31:189:99:252,0,372
|
117
|
-
1 10297 . C T 187.21 . AC=5;AF=0.357;AN=14;BaseQRankSum=-2.778;DP=1440;Dels=0.00;FS=0.000;HaplotypeScore=123.6373;MLEAC=5;MLEAF=0.357;MQ=27.26;MQ0=217;MQRankSum=-2.914;QD=0.18;ReadPosRankSum=1.927 GT:AD:DP:GQ:PL 0/1:155,18:182:44:44,0,654 0/1:218,23:246:21:21,0,673 0/1:219,26:250:41:41,0,898 0/0:207,30:246:39:0,39,963 0/0:137,20:165:21:0,21,363 0/1:124,27:158:65:65,0,435 0/1:151,27:183:63:63,0,485
|
118
|
-
1 10303 . C T 166.50 . AC=3;AF=0.214;AN=14;BaseQRankSum=-3.960;DP=1460;Dels=0.00;FS=2.121;HaplotypeScore=138.0883;MLEAC=2;MLEAF=0.143;MQ=27.29;MQ0=220;MQRankSum=-2.873;QD=0.27;ReadPosRankSum=1.756 GT:AD:DP:GQ:PL 0/1:169,25:198:99:195,0,609 0/1:211,31:247:1:1,0,656 0/0:214,28:248:7:0,7,982 0/0:214,32:248:25:0,25,980 0/0:146,17:172:2:0,2,353 0/1:123,23:157:17:17,0,541 0/0:156,22:182:19:0,19,413
|
119
|
-
1 10315 . C T 108.20 . AC=3;AF=0.214;AN=14;BaseQRankSum=-3.769;DP=1500;Dels=0.01;FS=1.493;HaplotypeScore=169.3933;MLEAC=3;MLEAF=0.214;MQ=26.95;MQ0=241;MQRankSum=-4.511;QD=0.19;ReadPosRankSum=2.373 GT:AD:DP:GQ:PL 0/1:181,26:212:41:41,0,618 0/0:223,17:246:99:0,102,832 0/0:219,20:242:66:0,66,924 0/0:217,23:245:99:0,109,1384 0/1:155,27:190:97:97,0,328 0/1:130,20:157:10:10,0,531 0/0:163,24:189:5:0,5,450
|
120
|
-
1 10321 . C T 106.30 . AC=5;AF=0.357;AN=14;BaseQRankSum=3.045;DP=1537;Dels=0.01;FS=5.835;HaplotypeScore=220.1531;MLEAC=5;MLEAF=0.357;MQ=26.69;MQ0=258;MQRankSum=-4.870;QD=0.10;ReadPosRankSum=0.815 GT:AD:DP:GQ:PL 0/1:189,25:218:30:30,0,810 0/0:219,22:246:24:0,24,593 0/1:218,27:248:34:34,0,1134 0/0:220,22:248:56:0,56,1207 0/1:168,23:193:19:19,0,493 0/1:139,22:164:46:46,0,689 0/1:167,26:196:20:20,0,522
|
121
|
-
1 10327 . T C 1215.15 . AC=7;AF=0.500;AN=14;BaseQRankSum=3.585;DP=1641;Dels=0.02;FS=6.639;HaplotypeScore=237.4339;MLEAC=7;MLEAF=0.500;MQ=25.22;MQ0=321;MQRankSum=4.402;QD=0.74;ReadPosRankSum=3.957 GT:AD:DP:GQ:PL 0/1:178,56:237:99:178,0,848 0/1:178,60:238:99:320,0,575 0/1:185,40:229:99:236,0,679 0/1:184,52:237:99:358,0,544 0/1:165,43:209:57:57,0,726 0/1:151,31:183:9:9,0,780 0/1:164,46:210:96:96,0,550
|
122
|
-
1 10583 . G A 699.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-4.714;DP=129;Dels=0.00;FS=7.556;HaplotypeScore=0.6677;MLEAC=7;MLEAF=0.500;MQ=41.33;MQ0=2;MQRankSum=-2.309;QD=5.43;ReadPosRankSum=-0.296 GT:AD:DP:GQ:PL 0/1:5,3:8:58:58,0,133 0/1:12,12:24:99:231,0,287 0/1:16,4:21:38:38,0,491 0/1:19,4:23:57:57,0,494 0/1:9,6:15:99:140,0,180 0/1:11,8:19:99:173,0,235 0/1:15,4:19:42:42,0,344
|
123
|
-
1 12783 . G A 4330.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=12.671;DP=939;Dels=0.00;FS=0.000;HaplotypeScore=1.4998;MLEAC=7;MLEAF=0.500;MQ=14.64;MQ0=602;MQRankSum=-3.992;QD=4.61;ReadPosRankSum=0.195 GT:AD:DP:GQ:PL 0/1:24,34:58:82:174,0,82 0/1:80,84:164:99:658,0,433 0/1:59,85:144:99:670,0,407 0/1:68,114:182:99:1074,0,463 0/1:58,68:126:99:437,0,310 0/1:37,66:103:99:446,0,369 0/1:62,96:158:99:911,0,417
|
124
|
-
1 13116 . T G 2592.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-5.563;DP=721;Dels=0.00;FS=381.256;HaplotypeScore=2.5606;MLEAC=7;MLEAF=0.500;MQ=23.97;MQ0=222;MQRankSum=-14.896;QD=3.60;ReadPosRankSum=3.079 GT:AD:DP:GQ:PL 0/1:20,12:32:92:92,0,300 0/1:84,47:131:99:479,0,1548 0/1:65,37:102:99:441,0,1153 0/1:94,57:152:99:584,0,1993 0/1:61,43:104:99:360,0,1199 0/1:54,33:88:99:221,0,986 0/1:62,47:109:99:455,0,1128
|
125
|
-
1 13118 . A G 2317.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-9.647;DP=703;Dels=0.00;FS=362.380;HaplotypeScore=2.3393;MLEAC=7;MLEAF=0.500;MQ=23.54;MQ0=228;MQRankSum=-14.592;QD=3.30;ReadPosRankSum=3.437 GT:AD:DP:GQ:PL 0/1:21,13:34:95:95,0,277 0/1:82,47:129:99:444,0,1445 0/1:65,36:101:99:412,0,1179 0/1:92,53:145:99:455,0,1989 0/1:58,40:99:99:312,0,1216 0/1:52,33:85:99:186,0,1000 0/1:61,47:108:99:453,0,1079
|
126
|
-
1 13178 . G A 72.69 . AC=2;AF=0.143;AN=14;BaseQRankSum=-2.194;DP=929;Dels=0.00;FS=8.154;HaplotypeScore=1.8585;MLEAC=2;MLEAF=0.143;MQ=13.49;MQ0=590;MQRankSum=-3.030;QD=0.38;ReadPosRankSum=-0.383 GT:AD:DP:GQ:PL 0/1:49,3:52:11:11,0,292 0/0:161,11:172:60:0,60,1328 0/1:122,15:137:99:99,0,936 0/0:164,8:172:99:0,112,1436 0/0:120,9:129:62:0,62,771 0/0:113,6:119:12:0,12,885 0/0:138,10:148:99:0,112,1596
|
127
|
-
1 13302 . C T 1067.42 . AC=6;AF=0.429;AN=14;BaseQRankSum=11.584;DP=692;Dels=0.00;FS=86.736;HaplotypeScore=2.8260;MLEAC=6;MLEAF=0.429;MQ=27.08;MQ0=150;MQRankSum=-14.794;QD=1.63;ReadPosRankSum=-9.193 GT:AD:DP:GQ:PL 0/0:26,10:36:41:0,41,616 0/1:91,45:136:99:183,0,2085 0/1:71,28:99:86:86,0,1557 0/1:96,50:146:99:333,0,2098 0/1:55,34:90:99:283,0,1321 0/1:47,18:65:99:157,0,943 0/1:89,28:117:67:67,0,1921
|
128
|
-
1 13757 . G A 271.89 . AC=2;AF=0.143;AN=14;BaseQRankSum=2.916;DP=1149;Dels=0.00;FS=11.172;HaplotypeScore=7.1466;MLEAC=2;MLEAF=0.143;MQ=18.17;MQ0=374;MQRankSum=3.990;QD=0.87;ReadPosRankSum=1.309 GT:AD:DP:GQ:PL 0/0:47,4:53:16:0,16,344 0/0:185,16:201:60:0,60,2690 0/1:157,24:181:99:162,0,2556 0/0:232,18:250:99:0,137,3600 0/0:139,13:152:15:0,15,2266 0/1:114,16:130:99:147,0,1525 0/0:168,14:182:2:0,2,2230
|
129
|
-
1 13868 . A G 1481.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=2.036;DP=1108;Dels=0.00;FS=4.601;HaplotypeScore=6.7136;MLEAC=7;MLEAF=0.500;MQ=13.23;MQ0=622;MQRankSum=1.659;QD=1.34;ReadPosRankSum=0.283 GT:AD:DP:GQ:PL 0/1:60,15:75:80:80,0,568 0/1:146,46:192:99:289,0,1030 0/1:146,36:182:99:203,0,1001 0/1:172,52:224:99:222,0,1150 0/1:106,36:142:99:181,0,621 0/1:79,32:111:99:126,0,467 0/1:129,38:167:99:420,0,767
|
130
|
-
1 13896 . C A 389.42 . AC=6;AF=0.429;AN=14;BaseQRankSum=-0.743;DP=830;Dels=0.00;FS=0.000;HaplotypeScore=1.6931;MLEAC=6;MLEAF=0.429;MQ=11.88;MQ0=518;MQRankSum=-1.292;QD=0.54;ReadPosRankSum=0.433 GT:AD:DP:GQ:PL 0/1:50,12:62:99:107,0,367 0/1:107,28:135:40:40,0,660 0/1:120,23:143:37:37,0,675 0/1:144,31:175:99:172,0,690 0/0:98,14:112:42:0,42,577 0/1:65,16:81:34:34,0,290 0/1:102,19:121:41:41,0,677
|
131
|
-
1 14354 . C A 109.72 . AC=3;AF=0.250;AN=12;BaseQRankSum=-2.527;DP=764;Dels=0.00;FS=0.000;HaplotypeScore=0.3231;MLEAC=3;MLEAF=0.250;MQ=5.02;MQ0=710;MQRankSum=1.079;QD=0.47;ReadPosRankSum=-0.178 GT:AD:DP:GQ:PL 0/1:36,7:43:68:68,0,75 0/0:141,17:158:9:0,9,86 0/1:103,12:115:42:42,0,72 0/0:132,13:145:21:0,21,201 ./. 0/1:62,10:72:38:38,0,117 0/0:108,11:119:9:0,9,86
|
132
|
-
1 14464 . A T 3945.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=0.104;DP=809;Dels=0.00;FS=38.588;HaplotypeScore=5.8354;MLEAC=7;MLEAF=0.500;MQ=23.21;MQ0=241;MQRankSum=6.859;QD=4.88;ReadPosRankSum=-0.294 GT:AD:DP:GQ:PL 0/1:41,10:51:99:183,0,569 0/1:107,48:155:99:829,0,1388 0/1:99,42:141:99:691,0,1103 0/1:114,36:150:99:454,0,1544 0/1:48,35:83:99:781,0,561 0/1:64,25:89:99:409,0,781 0/1:102,38:140:99:638,0,1310
|
133
|
-
1 14673 . G C 1012.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=3.674;DP=754;Dels=0.00;FS=115.496;HaplotypeScore=14.9167;MLEAC=7;MLEAF=0.500;MQ=23.97;MQ0=268;MQRankSum=-1.459;QD=1.34;ReadPosRankSum=-3.039 GT:AD:DP:GQ:PL 0/1:28,8:36:34:34,0,409 0/1:117,25:142:99:125,0,1964 0/1:87,30:117:99:214,0,1506 0/1:130,27:157:99:193,0,2076 0/1:77,18:95:99:114,0,1273 0/1:49,27:76:99:200,0,719 0/1:103,28:131:99:172,0,1620
|
134
|
-
1 14699 . C G 64.65 . AC=2;AF=0.143;AN=14;BaseQRankSum=6.064;DP=719;Dels=0.00;FS=29.480;HaplotypeScore=5.5900;MLEAC=2;MLEAF=0.143;MQ=24.79;MQ0=233;MQRankSum=-8.066;QD=0.27;ReadPosRankSum=-0.696 GT:AD:DP:GQ:PL 0/0:35,6:43:51:0,51,720 0/1:91,37:128:59:59,0,1859 0/0:80,29:109:99:0,101,1700 0/0:113,34:147:14:0,14,1987 0/0:72,26:98:37:0,37,1319 0/0:53,25:78:78:0,78,1035 0/1:84,30:114:44:44,0,1326
|
135
|
-
1 14907 . A G 9688.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=3.299;DP=1083;Dels=0.00;FS=20.983;HaplotypeScore=11.4413;MLEAC=7;MLEAF=0.500;MQ=33.27;MQ0=51;MQRankSum=1.076;QD=8.95;ReadPosRankSum=0.653 GT:AD:DP:GQ:PL 0/1:27,30:57:99:603,0,550 0/1:117,99:216:99:2024,0,2888 0/1:91,71:162:99:1489,0,1990 0/1:119,86:205:99:1876,0,2588 0/1:100,53:153:99:1001,0,2297 0/1:59,59:118:99:1240,0,1241 0/1:91,67:158:99:1495,0,2003
|
136
|
-
1 14930 . A G 8665.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-13.760;DP=1092;Dels=0.00;FS=17.240;HaplotypeScore=20.0469;MLEAC=7;MLEAF=0.500;MQ=34.72;MQ0=22;MQRankSum=1.127;QD=7.94;ReadPosRankSum=0.785 GT:AD:DP:GQ:PL 0/1:32,36:68:99:609,0,659 0/1:123,92:216:99:1636,0,3225 0/1:92,78:170:99:1449,0,2202 0/1:123,86:210:99:1748,0,3028 0/1:85,50:136:99:802,0,2117 0/1:62,63:125:99:1072,0,1437 0/1:92,71:164:99:1389,0,2055
|
137
|
-
1 14933 . G A 248.54 . AC=3;AF=0.214;AN=14;BaseQRankSum=1.588;DP=1089;Dels=0.00;FS=14.333;HaplotypeScore=19.7793;MLEAC=3;MLEAF=0.214;MQ=34.91;MQ0=18;MQRankSum=1.439;QD=0.45;ReadPosRankSum=0.752 GT:AD:DP:GQ:PL 0/0:59,9:68:1:0,1,1361 0/1:192,24:216:99:125,0,4941 0/0:160,9:169:99:0,142,4118 0/1:191,21:212:39:39,0,4848 0/0:126,6:132:99:0,210,3367 0/1:113,15:128:99:124,0,2578 0/0:154,10:164:99:0,158,3934
|
138
|
-
1 14948 . G A 570.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=9.167;DP=1050;Dels=0.00;FS=11.131;HaplotypeScore=6.4398;MLEAC=7;MLEAF=0.500;MQ=32.69;MQ0=53;MQRankSum=0.017;QD=0.54;ReadPosRankSum=-1.181 GT:AD:DP:GQ:PL 0/1:56,7:63:79:79,0,1134 0/1:168,24:192:70:70,0,3900 0/1:160,21:181:99:147,0,3515 0/1:188,23:211:57:57,0,4113 0/1:115,14:129:32:32,0,2406 0/1:103,18:121:99:173,0,2016 0/1:132,21:153:52:52,0,2861
|
139
|
-
1 14976 . G A 195.07 . AC=3;AF=0.214;AN=14;BaseQRankSum=7.340;DP=939;Dels=0.00;FS=32.492;HaplotypeScore=4.6786;MLEAC=3;MLEAF=0.214;MQ=27.87;MQ0=167;MQRankSum=1.477;QD=0.53;ReadPosRankSum=-0.560 GT:AD:DP:GQ:PL 0/1:50,6:56:12:12,0,929 0/0:152,14:166:81:0,81,3159 0/0:152,9:161:99:0,113,2885 0/1:174,22:196:99:127,0,3211 0/0:100,9:109:97:0,97,1900 0/1:103,13:116:97:97,0,1548 0/0:122,13:135:55:0,55,2246
|
140
|
-
1 15118 . A G 2503.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-5.645;DP=1004;Dels=0.00;FS=0.313;HaplotypeScore=4.1078;MLEAC=7;MLEAF=0.500;MQ=21.49;MQ0=207;MQRankSum=-0.007;QD=2.49;ReadPosRankSum=-0.291 GT:AD:DP:GQ:PL 0/1:38,8:46:50:50,0,575 0/1:148,50:198:99:671,0,2598 0/1:97,32:129:99:358,0,1911 0/1:176,53:230:99:700,0,2989 0/1:91,19:113:99:146,0,1741 0/1:92,31:126:99:347,0,1543 0/1:126,30:158:99:271,0,2193
|
141
|
-
1 15190 . G A 2564.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=11.094;DP=1090;Dels=0.00;FS=0.297;HaplotypeScore=4.3151;MLEAC=7;MLEAF=0.500;MQ=26.11;MQ0=187;MQRankSum=-0.724;QD=2.35;ReadPosRankSum=0.530 GT:AD:DP:GQ:PL 0/1:42,11:53:99:177,0,696 0/1:157,51:208:99:839,0,3145 0/1:142,28:170:91:91,0,2919 0/1:160,40:200:99:499,0,2815 0/1:109,17:126:99:167,0,2363 0/1:111,34:145:99:554,0,2268 0/1:141,38:179:99:277,0,2827
|
142
|
-
1 15211 . T G 14032.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-11.292;DP=992;Dels=0.00;FS=0.281;HaplotypeScore=11.0809;MLEAC=7;MLEAF=0.500;MQ=27.20;MQ0=159;MQRankSum=3.859;QD=14.15;ReadPosRankSum=-1.972 GT:AD:DP:GQ:PL 0/1:19,35:54:99:858,0,183 0/1:63,120:183:99:2771,0,960 0/1:50,111:161:99:2213,0,740 0/1:58,113:171:99:2326,0,685 0/1:39,81:120:99:1707,0,678 0/1:38,96:134:99:2126,0,499 0/1:61,107:168:99:2071,0,895
|
143
|
-
1 15274 . A G,T 8909.81 . AC=7,7;AF=0.500,0.500;AN=14;BaseQRankSum=2.416;DP=636;Dels=0.00;FS=0.000;HaplotypeScore=5.1061;MLEAC=7,7;MLEAF=0.500,0.500;MQ=22.77;MQ0=195;MQRankSum=2.299;QD=14.01;ReadPosRankSum=1.707 GT:AD:DP:GQ:PL 1/2:1,14,22:37:99:717,494,467,224,0,170 1/2:1,45,75:121:99:1922,1334,1265,588,0,441 1/2:0,31,71:102:99:1960,1563,1515,396,0,222 1/2:1,59,77:137:99:2009,1376,1298,633,0,486 1/2:0,18,52:71:62:938,789,771,149,0,62 1/2:0,29,38:67:99:1141,883,853,258,0,162 1/2:0,38,60:98:99:1464,1064,1016,399,0,285
|
144
|
-
1 15447 . A G 109.56 . AC=3;AF=0.214;AN=14;BaseQRankSum=-9.704;DP=1213;Dels=0.00;FS=0.000;HaplotypeScore=16.4636;MLEAC=3;MLEAF=0.214;MQ=19.12;MQ0=346;MQRankSum=-0.997;QD=0.20;ReadPosRankSum=-1.088 GT:AD:DP:GQ:PL 0/0:42,4:46:34:0,34,690 0/0:220,22:242:99:0,99,3639 0/0:167,16:183:42:0,42,2582 0/1:201,25:226:78:78,0,2854 0/1:121,16:137:39:39,0,1877 0/0:160,13:173:99:0,139,2724 0/1:157,18:175:34:34,0,2472
|
145
|
-
1 15688 . C T 54.29 . AC=2;AF=0.143;AN=14;BaseQRankSum=-8.686;DP=904;Dels=0.00;FS=11.971;HaplotypeScore=3.1454;MLEAC=2;MLEAF=0.143;MQ=16.75;MQ0=361;MQRankSum=-0.069;QD=0.16;ReadPosRankSum=0.355 GT:AD:DP:GQ:PL 0/0:34,3:37:15:0,15,335 0/0:166,16:182:61:0,61,2190 0/1:131,16:147:69:69,0,1563 0/1:167,17:184:22:22,0,1894 0/0:88,12:100:15:0,15,1099 0/0:88,13:101:1:0,1,1126 0/0:132,16:148:18:0,18,1706
|
146
|
-
1 16068 . T C 377.22 . AC=4;AF=0.286;AN=14;BaseQRankSum=-7.618;DP=398;Dels=0.00;FS=12.349;HaplotypeScore=1.8069;MLEAC=4;MLEAF=0.286;MQ=26.64;MQ0=64;MQRankSum=-4.589;QD=1.80;ReadPosRankSum=-0.448 GT:AD:DP:GQ:PL 0/1:18,15:33:99:182,0,404 0/0:51,6:57:31:0,31,815 0/1:52,16:68:64:64,0,1101 0/0:68,13:81:99:0,99,1505 0/0:41,8:49:51:0,51,1010 0/1:40,9:49:21:21,0,702 0/1:38,19:58:99:153,0,760
|
147
|
-
1 16103 . T G 2348.85 . AC=7;AF=0.500;AN=14;BaseQRankSum=-1.646;DP=526;Dels=0.00;FS=2.577;HaplotypeScore=0.9645;MLEAC=7;MLEAF=0.500;MQ=26.64;MQ0=82;MQRankSum=-2.736;QD=4.47;ReadPosRankSum=-2.044 GT:AD:DP:GQ:PL 0/1:21,29:50:99:504,0,450 0/1:55,24:79:99:209,0,838 0/1:49,37:86:99:456,0,1002 0/1:74,32:106:99:193,0,1519 0/1:41,19:60:99:141,0,740 0/1:38,23:61:99:257,0,548 0/1:38,46:84:99:628,0,641
|
@@ -1,8 +1,10 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=30669 to complete /tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf
|
3
3
|
Processing remaining output...
|
4
|
-
Trying: [[
|
5
|
-
Set lock on [[
|
6
|
-
Processing output file /tmp/bio-
|
7
|
-
|
8
|
-
|
4
|
+
Trying: [[30669, 1, "/tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf"]]
|
5
|
+
Set lock on [[30669, 1, "/tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf"]]
|
6
|
+
Processing output file /tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf (blocking)
|
7
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf
|
8
|
+
Trying to remove /tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf.keep
|
9
|
+
Removing /tmp/bio-vcf_20201222-30667-hcdvz2/000001-bio-vcf.keep
|
10
|
+
Removing dir /tmp/bio-vcf_20201222-30667-hcdvz2
|
@@ -1,5 +1,5 @@
|
|
1
|
-
bio-vcf 0.9.
|
2
|
-
Waiting up to 180 seconds for pid=
|
1
|
+
bio-vcf 0.9.4 (biogem Ruby 2.5.5 with pcows) by Pjotr Prins 2015-2020
|
2
|
+
Waiting up to 180 seconds for pid=30624 to complete /tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf
|
3
3
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
4
4
|
[:filter, "s.dp>20"]
|
5
5
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
@@ -9,8 +9,10 @@ Waiting up to 180 seconds for pid=9360 to complete /tmp/bio-vcf_20160122-9358-zf
|
|
9
9
|
[:format, {"GT"=>0, "AD"=>1, "DP"=>2, "GQ"=>3, "PL"=>4}, :sample, ["./."]]
|
10
10
|
[:filter, "s.dp>20"]
|
11
11
|
Processing remaining output...
|
12
|
-
Trying: [[
|
13
|
-
Set lock on [[
|
14
|
-
Processing output file /tmp/bio-
|
15
|
-
|
16
|
-
|
12
|
+
Trying: [[30624, 1, "/tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf"]]
|
13
|
+
Set lock on [[30624, 1, "/tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf"]]
|
14
|
+
Processing output file /tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf (blocking)
|
15
|
+
Checking for output_lock on existing /tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf
|
16
|
+
Trying to remove /tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf.keep
|
17
|
+
Removing /tmp/bio-vcf_20201222-30622-9czlqz/000001-bio-vcf.keep
|
18
|
+
Removing dir /tmp/bio-vcf_20201222-30622-9czlqz
|