Skip to content
Snippets Groups Projects
Commit 7b2a5605 authored by Neil Kindlon's avatar Neil Kindlon
Browse files

Including files for minor fixes omitted in yesterday's check-in

parent 267cb42b
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,8 @@ ContextClosest::ContextClosest()
_strandedDistMode(REF_DIST),
_multiDbMode(EACH_DB)
{
// closest requires sorted input
setSortedInput(true);
}
......
......@@ -122,7 +122,7 @@ bool Record::chromAfter(const Record *other) const
bool Record::after(const Record *other) const
{
return (_chrId == other->_chrId && _startPos >= other->_endPos);
return (sameChrom(other) && _startPos >= other->_endPos);
}
bool Record::intersects(const Record *record,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment