Skip to content

Commit

Permalink
Report correct number of overlaps at end of parallel store construction.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Sep 13, 2017
1 parent 1b39d4a commit dfff4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/ovStoreWriter.C
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ ovStoreWriter::mergeInfoFiles(void) {
info.save(_storePath, _fileLimit);

fprintf(stderr, "Created ovStore '%s' with " F_U64 " overlaps for reads from " F_U32 " to " F_U32 ".\n",
_storePath, _info.numOverlaps(), _info.smallestID(), _info.largestID());
_storePath, info.numOverlaps(), info.smallestID(), info.largestID());
}


Expand Down

0 comments on commit dfff4ab

Please sign in to comment.