Return the mean k-mer coverage of the specified vertex. */
| 494 | |
| 495 | /** Return the mean k-mer coverage of the specified vertex. */ |
| 496 | static float |
| 497 | getMeanCoverage(const ContigProperties& vp) |
| 498 | { |
| 499 | return (float)vp.coverage / getKmerLength(vp); |
| 500 | } |
| 501 | |
| 502 | /** Remove contigs with insufficient coverage. */ |
| 503 | static void |
no test coverage detected