Remove the specified contig from the adjacency graph. */
| 533 | |
| 534 | /** Remove the specified contig from the adjacency graph. */ |
| 535 | static void |
| 536 | removeContig(Graph* g, ContigID id) |
| 537 | { |
| 538 | ContigNode v(id, false); |
| 539 | g->clear_vertex(v); |
| 540 | g->remove_vertex(v); |
| 541 | } |
| 542 | |
| 543 | int |
| 544 | main(int argc, char** argv) |
no test coverage detected