Return whether this path is a cycle. */
| 501 | |
| 502 | /** Return whether this path is a cycle. */ |
| 503 | static bool |
| 504 | isCycle(const Lengths& lengths, const ContigPath& path) |
| 505 | { |
| 506 | return !align(lengths, path, path, path.front()).empty(); |
| 507 | } |
| 508 | |
| 509 | /** Identify paths subsumed by the specified path. |
| 510 | * @param overlaps [out] paths that are found to overlap |
no test coverage detected