Skip to content
Snippets Groups Projects
Commit e724885b authored by Aaron's avatar Aaron
Browse files

logical, not operator. need coffee.

parent 7ded18df
No related branches found
No related tags found
No related merge requests found
......@@ -88,8 +88,8 @@ void PairToPair::FindOverlaps(const BEDPE &a) {
start2 -= _slop;
}
else {
(start1 -= _slop) >= 0 ? start1 -= _slop : start1 = 0;
(start2 -= _slop) >= 0 ? start2 -= _slop : start2 = 0;
(start1 - _slop) >= 0 ? start1 -= _slop : start1 = 0;
(start2 - _slop) >= 0 ? start2 -= _slop : start2 = 0;
end1 += _slop;
end2 += _slop;
}
......
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