Skip to content

Commit

Permalink
Initialize the number of overlaps per file to zero. Argh. Issue #959.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Jul 10, 2018
1 parent 958060a commit 51947ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/stores/ovStoreConfig.C
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ovStoreConfig::assignReadsToSlices(sqStore *seq,
uint32 *oPR = new uint32 [_maxID + 1];
uint64 numOverlaps = 0;

memset(oPF, 0, sizeof(uint64) * (_numInputs));
memset(oPR, 0, sizeof(uint32) * (_maxID + 1));

for (uint32 ii=0; ii<_numInputs; ii++) {
Expand Down

0 comments on commit 51947ae

Please sign in to comment.