Skip to content

Commit

Permalink
Fix manual query segment count
Browse files Browse the repository at this point in the history
  • Loading branch information
eaasna committed Apr 15, 2024
1 parent c08f752 commit ae70f99
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/valik/split/metadata.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@ struct metadata
else
arguments.seg_count = std::max(arguments.seg_count, (uint32_t) sequences.size() * 2);
}
else
{
arguments.seg_count = arguments.seg_count_in;
}

scan_database_sequences(arguments);
if (arguments.manual_parameters && (segments.size() != arguments.seg_count))
Expand Down

0 comments on commit ae70f99

Please sign in to comment.