Skip to content

Commit

Permalink
Always compute the average genome size
Browse files Browse the repository at this point in the history
  • Loading branch information
mourisl committed Aug 16, 2021
1 parent 49544d9 commit 92d6e79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bt2_idx.h
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,8 @@ class Ebwt {
}

// Calculate average genome size
if(!this->_offw) { // Skip if there are many sequences (e.g. >64K)
if(1) { //!this->_offw) { // Skip if there are many sequences (e.g. >64K).
// Now always compute the genome length.
map<uint64_t, uint64_t> tid_count;
map<uint64_t, uint64_t> new_size ;

Expand Down

0 comments on commit 92d6e79

Please sign in to comment.