| 220 | } |
| 221 | |
| 222 | void |
| 223 | writePaths(std::ostream& stream, const ImaginaryContigPaths& paths) |
| 224 | { |
| 225 | int counter = 0; |
| 226 | for (const auto& path : paths) { |
| 227 | stream << '>' << counter++ << '\n' << getPathSequence(path) << '\n'; |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | void |
| 232 | writeResults( |
no test coverage detected