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 6, 2024
1 parent 80aae9e commit a188380
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");
bashArgs.add("--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 a188380

Please sign in to comment.