Skip to content

Commit

Permalink
src/load_data_for_complexity.hpp: making forgotten change to type of …
Browse files Browse the repository at this point in the history
…rng seed in declaration of functions to load coverage counts
  • Loading branch information
andrewdavidsmith committed Oct 20, 2024
1 parent fb9b8e3 commit 431a062
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/load_data_for_complexity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@

std::size_t
load_coverage_counts_MR(const std::string &input_file_name,
const std::uint64_t seed, const std::size_t bin_size,
const std::uint32_t seed, const std::size_t bin_size,
const std::size_t max_width,
std::vector<double> &coverage_hist);

std::size_t
load_coverage_counts_GR(const std::string &input_file_name,
const std::uint64_t seed, const std::size_t bin_size,
const std::uint32_t seed, const std::size_t bin_size,
const std::size_t max_width,
std::vector<double> &coverage_hist);

Expand Down Expand Up @@ -66,7 +66,7 @@ load_counts_BAM_se(const std::uint32_t n_threads,
std::size_t
load_coverage_counts_BAM(const std::uint32_t n_threads,
const std::string &input_file_name,
const std::uint64_t seed, const std::size_t bin_size,
const std::uint32_t seed, const std::size_t bin_size,
const std::size_t max_width,
std::vector<double> &coverage_hist);

Expand Down

0 comments on commit 431a062

Please sign in to comment.