Skip to content

Commit

Permalink
Request uncompressed lengths for read length histograms. Issue #1906.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Feb 26, 2021
1 parent 2f73439 commit f1eadb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pipelines/canu/SequenceStore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ sub generateReadLengthHistogram ($$) {
$cmd .= " -raw \\\n" if ($tag eq "cor");
$cmd .= " -corrected \\\n" if ($tag eq "obt");
$cmd .= " -corrected -trimmed \\\n" if ($tag eq "utg");
$cmd .= " -histogram \\\n";
$cmd .= " -uncompressed \\\n";
$cmd .= " -lengths \\\n";
$cmd .= "> ./$asm.seqStore/readlengths-$tag.dat \\\n";
$cmd .= "2> ./$asm.seqStore/readlengths-$tag.err \n";
Expand Down Expand Up @@ -462,6 +462,7 @@ sub generateReadLengthHistogram ($$) {
$cmd .= " -raw \\\n" if ($tag eq "cor");
$cmd .= " -corrected \\\n" if ($tag eq "obt");
$cmd .= " -corrected -trimmed \\\n" if ($tag eq "utg");
$cmd .= " -uncompressed \\\n";
$cmd .= " -histogram \\\n";
$cmd .= "> ./$asm.seqStore/readlengths-$tag.txt \\\n";
$cmd .= "2> ./$asm.seqStore/readlengths-$tag.err \n";
Expand Down

0 comments on commit f1eadb3

Please # to comment.