| 63 | } |
| 64 | |
| 65 | size_t Kmer::getHashCode() const |
| 66 | { |
| 67 | // Hash numbytes - 1 to avoid getting different hash values for |
| 68 | // the same sequence for n % 4 != 0 sequences. |
| 69 | return hashmem(m_seq, bytes() - 1); |
| 70 | } |
| 71 | |
| 72 | /** Return the string representation of this sequence. */ |
| 73 | Sequence Kmer::str() const |
no test coverage detected