Skip to content

Commit

Permalink
Fix DeepVariant arg name
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Feb 7, 2024
1 parent a188380 commit 8743431
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public void execute(File inputBam, File refFasta, File outputGvcf, PipelineOutpu
tracker.addIntermediateFile(dockerBashScript);

List<String> bashArgs = new ArrayList<>(Arrays.asList("/opt/deepvariant/bin/run_deepvariant"));
bashArgs.add("--normalize_reads=true");
bashArgs.add("--make_examples_extra_args='normalize_reads=true'");
bashArgs.add("--ref=/work/" + refFastaLocal.getName());
bashArgs.add("--reads=/work/" + inputBamLocal.getName());
bashArgs.add("--output_gvcf=/work/" + outputGvcf.getName());
Expand Down

0 comments on commit 8743431

Please sign in to comment.