Skip to content

Commit 3d7f838

Browse files
committed
Bugfix to DeepVariant docker command
1 parent 8ea5625 commit 3d7f838

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,13 @@ public void execute(File inputBam, File refFasta, File outputGvcf, PipelineOutpu
264264
{
265265
throw new PipelineJobException(e);
266266
}
267+
268+
execute(Arrays.asList("/bin/bash/", localBashScript.getPath()));
269+
270+
if (!outputGvcf.exists())
271+
{
272+
throw new PipelineJobException("File not found: " + outputGvcf.getPath());
273+
}
267274
}
268275
}
269276
}

0 commit comments

Comments
 (0)