Build contig overlap graph for paired de Bruijn graph */
| 307 | #if PAIRED_DBG |
| 308 | /** Build contig overlap graph for paired de Bruijn graph */ |
| 309 | void buildPairedOverlapGraph(Graph& g, int argc, char** argv) |
| 310 | { |
| 311 | Kmer::setLength(opt::singleKmerSize - 1); |
| 312 | KmerPair::setLength(opt::k - 1); |
| 313 | |
| 314 | vector<KmerPair> prefixes; |
| 315 | unordered_map<KmerPair, vector<ContigNode> > |
| 316 | suffixMap(prefixes.size()); |
| 317 | |
| 318 | loadDataStructures(g, prefixes, suffixMap, argc, argv); |
| 319 | buildOverlapGraph(g, prefixes, suffixMap); |
| 320 | } |
| 321 | #endif |
| 322 | |
| 323 | int main(int argc, char** argv) |
no test coverage detected