|
nclist-cpp
C++ implementation of nested containment lists
|
Parameters for overlaps_end().
More...
#include <overlaps_end.hpp>
Public Attributes | |
| Position_ | max_gap = 0 |
| Position_ | min_overlap = 0 |
| bool | quit_on_first = false |
Parameters for overlaps_end().
| Position_ | Numeric type for the start/end positions of each interval. |
| Position_ nclist::OverlapsEndParameters< Position_ >::max_gap = 0 |
Maximum gap between the ends of the query and subject intervals. An overlap is reported between a query/subject pair if the gap is equal to or less than max_gap.
| Position_ nclist::OverlapsEndParameters< Position_ >::min_overlap = 0 |
Minimum overlap between query and subject intervals. An overlap will not be reported if the length of the overlapping subinterval is less than min_overlap.
| bool nclist::OverlapsEndParameters< Position_ >::quit_on_first = false |
Whether to quit immediately upon identifying an overlap with the query interval. In such cases, matches will contain one arbitrarily chosen subject interval that overlaps with the query.