Return the properties of the specified vertex, unless u is * ambiguous, in which case return the length of the ambiguous * sequence. */
| 204 | * sequence. |
| 205 | */ |
| 206 | static inline ContigProperties |
| 207 | get(vertex_bundle_t, const Graph& g, ContigNode u) |
| 208 | { |
| 209 | return u.ambiguous() ? ContigProperties(u.length() + opt::k - 1, 0) : g[u]; |
| 210 | } |
| 211 | |
| 212 | /** Append the sequence of contig v to seq. */ |
| 213 | static void |
no test coverage detected