Skip to content

Commit

Permalink
Add a space before shell line continuation; amazingly, it was crashin…
Browse files Browse the repository at this point in the history
…g on MacOS.
  • Loading branch information
brianwalenz committed Sep 18, 2017
1 parent 6037e75 commit b157cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipelines/canu/CorrectReads.pm
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ sub buildCorrectionLayoutsConfigure ($) {
$cmd .= " -eL " . getGlobal("corMinEvidenceLength") . " \\\n" if (defined(getGlobal("corMinEvidenceLength")));
$cmd .= " -eE " . getGlobal("corMaxEvidenceErate") . " \\\n" if (defined(getGlobal("corMaxEvidenceErate")));
$cmd .= " -ec " . getGlobal("corMinCoverage") . " \\\n";
$cmd .= " -eC " . getCorCov($asm, "Local") . "\\\n";
$cmd .= " -eC " . getCorCov($asm, "Local") . " \\\n";
$cmd .= "> ./$asm.corStore.err 2>&1\n";

if (runCommand($base, $cmd)) {
Expand Down

0 comments on commit b157cee

Please sign in to comment.