Remove a k-mer from this collection. */
| 1436 | |
| 1437 | /** Remove a k-mer from this collection. */ |
| 1438 | void NetworkSequenceCollection::remove(const V& seq) |
| 1439 | { |
| 1440 | if (isLocal(seq)) |
| 1441 | m_data.remove(seq); |
| 1442 | else |
| 1443 | m_comm.sendSeqRemoveMessage(computeNodeID(seq), seq); |
| 1444 | } |
| 1445 | |
| 1446 | bool NetworkSequenceCollection::checkpointReached() const |
| 1447 | { |
no test coverage detected