Return whether this vertex is a path or a contig. */
| 196 | |
| 197 | /** Return whether this vertex is a path or a contig. */ |
| 198 | static bool |
| 199 | isPath(const ContigNode& u) |
| 200 | { |
| 201 | return u.id() >= Vertex::s_offset; |
| 202 | } |
| 203 | |
| 204 | /** Return a path, complemented if necessary. */ |
| 205 | static ContigPath |
no test coverage detected