A small struct for holding overlap information: just a sequence and offset from the focal read */
| 71 | /* A small struct for holding overlap information: |
| 72 | just a sequence and offset from the focal read */ |
| 73 | struct 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*/ |
| 81 | static bool offset_sort(const Overlap& x, const Overlap& y) |
no outgoing calls
no test coverage detected