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

Method flipQuery

Common/Alignment.h:59–67  ·  view source on GitHub ↗

Return an alignment of the reverse complement of the query to * the same target. */

Source from the content-addressed store, hash-verified

57 * the same target.
58 */
59Alignment flipQuery() const
60{
61 Alignment rc(*this);
62 unsigned qend = read_start_pos + align_length;
63 assert(qend <= (unsigned)read_length);
64 rc.read_start_pos = read_length - qend;
65 rc.isRC = !isRC;
66 return rc;
67}
68
69static int calculateReverseReadStart(int read_start_pos,
70 int read_length, int align_length)

Callers 3

buildBaseQualityFunction · 0.80
doReadIntegrityFunction · 0.80
flipAlignmentFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected