nclist-cpp
C++ implementation of nested containment lists
|
Parameters for overlaps_equal()
.
More...
#include <overlaps_equal.hpp>
Public Attributes | |
Position_ | max_gap = 0 |
Position_ | min_overlap = 0 |
bool | quit_on_first = false |
Parameters for overlaps_equal()
.
Position_ | Numeric type for the start/end positions of each interval. |
Position_ nclist::OverlapsEqualParameters< Position_ >::max_gap = 0 |
Maximum gap between the starts/ends of query and subject intervals. An overlap is reported between a query/subject pair if the gap between starts and the gap between ends are both equal to or less than max_gap
.
Position_ nclist::OverlapsEqualParameters< 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::OverlapsEqualParameters< 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.