Record the trimmed contigs. */
| 351 | |
| 352 | /** Record the trimmed contigs. */ |
| 353 | static void |
| 354 | recordTrimmedContigs(ContigPath::const_iterator first, ContigPath::const_iterator last) |
| 355 | { |
| 356 | for (ContigPath::const_iterator it = first; it != last; ++it) |
| 357 | if (!it->ambiguous()) |
| 358 | s_trimmedContigs.push_back(it->contigIndex()); |
| 359 | } |
| 360 | |
| 361 | /** Remove ambiguous contigs from the ends of the path. */ |
| 362 | static void |
no test coverage detected