| 82 | } |
| 83 | |
| 84 | double |
| 85 | getContigBaseCoverage(const ContigNode& node) |
| 86 | { |
| 87 | return double(getContigNumOfKmers(node)) * opt::k / |
| 88 | double(getContigSequence(node).size() - opt::k + 1); |
| 89 | } |
| 90 | |
| 91 | void |
| 92 | loadContigGraph(const std::string& contigGraphPath) |
no test coverage detected