Skip to content

Commit

Permalink
Bugfix to DeepVariant docker command
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 20, 2024
1 parent 8ea5625 commit 3d7f838
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,13 @@ public void execute(File inputBam, File refFasta, File outputGvcf, PipelineOutpu
{
throw new PipelineJobException(e);
}

execute(Arrays.asList("/bin/bash/", localBashScript.getPath()));

if (!outputGvcf.exists())
{
throw new PipelineJobException("File not found: " + outputGvcf.getPath());
}
}
}
}

0 comments on commit 3d7f838

Please sign in to comment.