Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Oct 25, 2023
1 parent 45fb7a3 commit a9416fb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/util/display_layout/sizes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,8 @@ void execute_general_stats(config const & cfg)
seqan::hibf::build::build_data data{.config = hibf_config, .ibf_graph = {hibf_layout}};
seqan::hibf::layout::graph::node const & root_node = data.ibf_graph.root;
size_t const t_max{root_node.number_of_technical_bins};
data.fpr_correction =
seqan::hibf::layout::compute_fpr_correction({.fpr = hibf_config.maximum_fpr,
.hash_count = hibf_config.number_of_hash_functions,
.t_max = t_max});
data.fpr_correction = seqan::hibf::layout::compute_fpr_correction(
{.fpr = hibf_config.maximum_fpr, .hash_count = hibf_config.number_of_hash_functions, .t_max = t_max});

// Get stats
hierarchical_stats(stats, root_node, data);
Expand Down

0 comments on commit a9416fb

Please sign in to comment.