Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
smehringer committed Nov 8, 2023
1 parent faa76c5 commit 8079d85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/layout/compute_layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ layout compute_layout(config const & config,
data_store store{.false_positive_rate = config.maximum_fpr,
.hibf_layout = &resulting_layout,
.kmer_counts = std::addressof(kmer_counts),
.sketches = std::addressof(sketches),
.union_estimation_timer = union_estimation_timer,
.rearrangement_timer = rearrangement_timer};
.sketches = std::addressof(sketches)};

store.fpr_correction = compute_fpr_correction({.fpr = config.maximum_fpr, //
.hash_count = config.number_of_hash_functions,
.t_max = config.tmax});

store.hibf_layout->top_level_max_bin_id = seqan::hibf::layout::hierarchical_binning{store, config}.execute();
union_estimation_timer = store.union_estimation_timer;
rearrangement_timer = store.rearrangement_timer;

// sort records ascending by the number of bin indices (corresponds to the IBF levels)
// GCOVR_EXCL_START
Expand Down

0 comments on commit 8079d85

Please sign in to comment.