Skip to content

Commit

Permalink
Ensure DeepVariant/docker has FAI index
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 22, 2024
1 parent 97ace2f commit e4ddb61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void execute(File inputBam, File refFasta, File outputGvcf, PipelineOutpu
ensureLocalCopy(SequenceUtil.getExpectedIndex(inputBam), workDir, tracker);

File refFastaLocal = ensureLocalCopy(refFasta, workDir, tracker);
ensureLocalCopy(new File(refFastaLocal.getPath() + ".fai"), workDir, tracker);
ensureLocalCopy(new File(refFasta.getPath() + ".fai"), workDir, tracker);
ensureLocalCopy(new File(FileUtil.getBaseName(refFasta.getPath()) + ".dict"), workDir, tracker);

File localBashScript = new File(workDir, "docker.sh");
Expand Down

0 comments on commit e4ddb61

Please sign in to comment.