Assemble a contig. */
| 1171 | |
| 1172 | /** Assemble a contig. */ |
| 1173 | void NetworkSequenceCollection::assembleContig( |
| 1174 | FastaWriter* writer, |
| 1175 | BranchRecord& branch, unsigned id) |
| 1176 | { |
| 1177 | size_t removed = AssemblyAlgorithms::assembleContig( |
| 1178 | this, writer, branch, id); |
| 1179 | if (removed > 0) { |
| 1180 | m_lowCoverageContigs++; |
| 1181 | m_lowCoverageKmer += removed; |
| 1182 | } |
| 1183 | } |
| 1184 | |
| 1185 | namespace std { |
| 1186 | /** Add a pair of numbers. */ |
nothing calls this directly
no test coverage detected