Return the sequence of the specified contig. */
| 143 | |
| 144 | /** Return the sequence of the specified contig. */ |
| 145 | static string sequence(const ContigNode& id) |
| 146 | { |
| 147 | const string& seq = g_contigs[id.id()]; |
| 148 | return id.sense() ? reverseComplement(seq) : seq; |
| 149 | } |
| 150 | |
| 151 | static unsigned findOverlap(const Graph& g, |
| 152 | const ContigNode& t_id, |
no test coverage detected