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

Method str

Common/Kmer.cpp:73–80  ·  view source on GitHub ↗

Return the string representation of this sequence. */

Source from the content-addressed store, hash-verified

71
72/** Return the string representation of this sequence. */
73Sequence Kmer::str() const
74{
75 Sequence s;
76 s.reserve(s_length);
77 for (unsigned i = 0; i < s_length; i++)
78 s.push_back(codeToBase(at(i)));
79 return s;
80}
81
82/** Swap the positions of four bases. */
83static const uint8_t swapBases[256] = {

Callers 15

scaffoldFunction · 0.45
storeContigsFunction · 0.45
assembleContigsFunction · 0.45
mainFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TESTFunction · 0.45
toXAFunction · 0.45
toSAMFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls 2

codeToBaseFunction · 0.85
push_backMethod · 0.45

Tested by 4

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TEST_FFunction · 0.36
TESTFunction · 0.36