Skip to content

Commit d6fa205

Browse files
committed
Bugfix lofreq-merge sorting of TSV
1 parent ed2c6d7 commit d6fa205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/MergeLoFreqVcfHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ private int getReadDepth(File vcf, Map<String, Integer> contigToOffset, String c
710710

711711
private void sortTsvFile(JobContext ctx, File input) throws PipelineJobException
712712
{
713-
File output = new File(input.getPath() + ".tmp");
713+
File output = new File(input.getParentFile(), "tmpTable.txt.gz");
714714
File script = new File(input.getParentFile(), "script.sh");
715715
try (PrintWriter writer = PrintWriters.getPrintWriter(script))
716716
{

0 commit comments

Comments
 (0)