Return the sequence of vertex u. */
| 552 | |
| 553 | /** Return the sequence of vertex u. */ |
| 554 | static string |
| 555 | getSequence(const Graph& g, vertex_descriptor u) |
| 556 | { |
| 557 | size_t i = get(vertex_contig_index, g, u); |
| 558 | assert(i < g_contigs.size()); |
| 559 | string seq(g_contigs[i]); |
| 560 | return get(vertex_sense, g, u) ? reverseComplement(seq) : seq; |
| 561 | } |
| 562 | |
| 563 | /** Return whether the specified edge is inconsistent. */ |
| 564 | struct is_edge_inconsistent |
no test coverage detected