| 89 | } |
| 90 | |
| 91 | void |
| 92 | loadContigGraph(const std::string& contigGraphPath) |
| 93 | { |
| 94 | if (opt::verbose) |
| 95 | std::cerr << "Loading contig graph from `" << contigGraphPath << "'...\n"; |
| 96 | std::ifstream fin(contigGraphPath); |
| 97 | assert_good(fin, contigGraphPath); |
| 98 | fin >> g_contigGraph; |
| 99 | assert(fin.eof()); |
| 100 | g_contigNames.lock(); |
| 101 | if (opt::verbose) { |
| 102 | std::cerr << "Contig graph loaded.\n"; |
| 103 | printGraphStats(std::cerr, g_contigGraph); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | void |
| 108 | loadContigs(const std::string& contigsPath) |
no test coverage detected