Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2f01b85a authored by LUISELLI Juliette's avatar LUISELLI Juliette
Browse files

Correctly compute nb of recombinations_ in DnaReplicationReport

parent 3483155c
No related branches found
No related tags found
No related merge requests found
......@@ -303,6 +303,14 @@ void DnaReplicationReport::compute_stats()
mut->mut_type() == S_DEL);
nb_mut_[mut->mut_type()]++;
}
#ifdef __EUKARYOTE
for (const auto& recomb : recombinations_) {
assert(recomb->mut_type() == RECOMB);
nb_mut_[recomb->mut_type()]++;
}
#endif
}
void DnaReplicationReport::write_to_tree_file(gzFile tree_file) const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment