Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
|
#include <ApproximateSeedComputation.h>
Static Public Member Functions | |
template<class SymbolType > | |
static ext::set< ext::pair< string::LinearString< SymbolType >, unsigned > > | compute (const string::LinearString< SymbolType > &pattern, unsigned distance, bool restricted) |
template<class SymbolType > | |
static ext::set< ext::pair< string::LinearString< SymbolType >, unsigned > > | compute (const string::LinearString< SymbolType > &pattern, unsigned distance) |
Class to compute the set of all approximate seeds of a given string with maximum Hamming distance
Source: Veronika Dolanska: Implementace automatovych algoritmu na hledani jader (2020)
|
inlinestatic |
Computes all k-approximate seeds of a string, approximation is under Hamming distance Source: Veronika Dolanska: Implementace automatovych algoritmu na hledani jader (2020)
pattern | - string for which seeds are computed |
distance | - max allowed Hamming distance k |
|
inlinestatic |
Computes all k-approximate seeds of a string, approximation is under Hamming distance Source: Veronika Dolanska: Implementace automatovych algoritmu na hledani jader (2020)
pattern | - string for which seeds are computed |
distance | - max allowed Hamming distance k |
restricted | - whether to compute restricted seeds only |