kaori
A C++ library for barcode extraction and matching
|
State of the search on a read sequence. More...
#include <SimpleSingleMatch.hpp>
Public Attributes | |
int | index = 0 |
size_t | position = 0 |
int | mismatches = 0 |
int | variable_mismatches = 0 |
bool | reverse = false |
State of the search on a read sequence.
int kaori::SimpleSingleMatch< max_size >::State::index = 0 |
Index of the known barcode sequence that matches the variable region in the read sequence. This will be -1 if no match was found.
int kaori::SimpleSingleMatch< max_size >::State::mismatches = 0 |
Total number of mismatches, including both the constant and variable regions. This should only be used if index != -1
.
size_t kaori::SimpleSingleMatch< max_size >::State::position = 0 |
Position of the match to the template, reported as the position on the read at the start of the template. This should only be used if index != -1
.
bool kaori::SimpleSingleMatch< max_size >::State::reverse = false |
Whether the match was found on the reverse strand of the read sequence.
int kaori::SimpleSingleMatch< max_size >::State::variable_mismatches = 0 |
Total number of mismatches in the variable region. This should only be used if index != -1
.