| 127 | } |
| 128 | |
| 129 | void |
| 130 | storeContigGraph( |
| 131 | const std::string& contigGraphPath, |
| 132 | const std::string& program, |
| 133 | const std::string& commandLine) |
| 134 | { |
| 135 | if (opt::verbose) { |
| 136 | std::cerr << "Storing contig graph to `" << contigGraphPath << "'...\n"; |
| 137 | } |
| 138 | std::ofstream fout(contigGraphPath.c_str()); |
| 139 | assert_good(fout, contigGraphPath); |
| 140 | write_graph(fout, g_contigGraph, program, commandLine); |
| 141 | assert_good(fout, contigGraphPath); |
| 142 | if (opt::verbose) { |
| 143 | std::cerr << "Contig graph stored.\n"; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | void |
| 148 | storeContigs(const std::string& contigsPath) |
no test coverage detected