MCPcopy Create free account
hub / github.com/BirolLab/abyss / encode

Method encode

FMIndex/FMIndex.h:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83/** Encode the alphabet of [first, last). */
84template <typename It>
85void encode(It first, It last) const
86{
87 assert(first < last);
88 assert(!m_alphabet.empty());
89 std::transform(first, last, first, Translate(*this));
90}
91
92/** Decode the alphabet of [first, last). */
93template <typename It>

Callers 1

buildFMIndexFromBWTFunction · 0.80

Calls 2

TranslateClass · 0.85
emptyMethod · 0.45

Tested by

no test coverage detected