Skip to content

Commit

Permalink
Pass through minimum overlap length
Browse files Browse the repository at this point in the history
  • Loading branch information
skoren committed Apr 20, 2017
1 parent 96aad28 commit b6a8122
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pipelines/canu/OverlapMhap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ sub mhapConfigure ($$$) {
print F " --ordered-kmer-size $ordSketchMer \\\n";
print F " --threshold $threshold \\\n";
print F " --filter-threshold $filterThreshold \\\n";
print F " --min-olap-length ", getGlobal("minOverlapLength"), " \\\n";
print F " --num-threads ", getGlobal("${tag}mhapThreads"), " \\\n";
print F " " . getGlobal("${tag}MhapOptions") . " \\\n" if (defined(getGlobal("${tag}MhapOptions")));
print F " -f $cygA ../../0-mercounts/$asm.ms$merSize.frequentMers.ignore.gz $cygB \\\n" if (-e "$base/0-mercounts/$asm.ms$merSize.frequentMers.ignore.gz");
Expand Down Expand Up @@ -487,6 +488,7 @@ sub mhapConfigure ($$$) {
print F " --filter-threshold $filterThreshold \\\n";
print F " --ordered-sketch-size $ordSketch \\\n";
print F " --ordered-kmer-size $ordSketchMer \\\n";
print F " --min-olap-length ", getGlobal("minOverlapLength"), " \\\n";
print F " --num-threads ", getGlobal("${tag}mhapThreads"), " \\\n";
print F " " . getGlobal("${tag}MhapOptions") . " \\\n" if (defined(getGlobal("${tag}MhapOptions")));
print F " -s $cygA ./blocks/\$blk.dat \$slf $cygB \\\n";
Expand Down

0 comments on commit b6a8122

Please sign in to comment.