Return the specified path. */
| 311 | |
| 312 | /** Return the specified path. */ |
| 313 | static ContigPath |
| 314 | getPath(const ContigPathMap& paths, ContigNode u) |
| 315 | { |
| 316 | ContigPathMap::const_iterator it = paths.find(u.contigIndex()); |
| 317 | assert(it != paths.end()); |
| 318 | ContigPath path = it->second; |
| 319 | if (u.sense()) |
| 320 | reverseComplement(path.begin(), path.end()); |
| 321 | return path; |
| 322 | } |
| 323 | |
| 324 | /** Find the overlaps between paths and add edges to the graph. */ |
| 325 | static void |
no test coverage detected