You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...unless overwriting an existing path (after #753)
When deciding whether to write an index, VcfWriter uses isRegularFile() on the output path. This will almost always return false, because the output path is usually a new, non-existing path (there is not already a regular file there).
Example (using FilterSomaticVcf), if I have this dir:
...unless overwriting an existing path (after #753)
When deciding whether to write an index,
VcfWriter
usesisRegularFile()
on the output path. This will almost always returnfalse
, because the output path is usually a new, non-existing path (there is not already a regular file there).Example (using
FilterSomaticVcf
), if I have this dir:And run the tool using a new output path:
I get the following output:
If I instead write to the
existing-file.vcf.gz
, I get an index:I now get an index written:
Indexes are written using
1.4.0
:The text was updated successfully, but these errors were encountered: