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

Class Overlap

DAssembler/DAssembler.cpp:73–78  ·  view source on GitHub ↗

A small struct for holding overlap information: just a sequence and offset from the focal read */

Source from the content-addressed store, hash-verified

71/* A small struct for holding overlap information:
72 just a sequence and offset from the focal read */
73struct Overlap{
74 string seq;
75 unsigned offset;
76 Overlap(const string& seq, unsigned offset)
77 : seq(seq), offset(offset) { }
78};
79
80/* Additional sort of Overlap objects used for pretty-printing alignments*/
81static bool offset_sort(const Overlap& x, const Overlap& y)

Callers 1

find_complex_overlapFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected