kaori
A C++ library for barcode extraction and matching
|
Status of the barcode sequence addition. More...
#include <MismatchTrie.hpp>
Public Attributes | |
bool | has_ambiguous = false |
bool | is_duplicate = false |
bool | duplicate_replaced = false |
bool | duplicate_cleared = false |
Status of the barcode sequence addition.
bool kaori::MismatchTrie::AddStatus::duplicate_cleared = false |
Whether the newly added sequence caused an existing duplicate to be cleared from the trie. Only set when is_duplicate = true
and duplicates
is set to DuplicateAction::NONE
in add()
.
bool kaori::MismatchTrie::AddStatus::duplicate_replaced = false |
Whether the newly added sequence replaced a duplicate in the trie. Only set when is_duplicate = true
and duplicates
is set to DuplicateAction::LAST
in add()
.
bool kaori::MismatchTrie::AddStatus::has_ambiguous = false |
Whether the newly added sequence contains ambiguous IUPAC codes.
bool kaori::MismatchTrie::AddStatus::is_duplicate = false |
Whether the newly added sequence is a duplicate of an existing sequence in the trie.