Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix wiggleLiftover segfault
(hopefully!)
  • Loading branch information
joelarmstrong committed Oct 22, 2013
1 parent 30a3e03 commit 63eb0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liftover/impl/halWiggleLiftover.cpp
Expand Up @@ -194,7 +194,7 @@ void WiggleLiftover::mapFragments(vector<MappedSegmentConstPtr>& fragments)
}
else
{
mpos = seg->getEndPosition() - j;
mpos = seg->getStartPosition() - j;
}
if (_cvIdx < _cvals.size() && _cvals[_cvIdx]._first <= pos &&
_cvals[_cvIdx]._last >= pos)
Expand Down

0 comments on commit 63eb0c8

Please sign in to comment.