From d8100de0a841170465162c8c8656680b1dd17b91 Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:25:16 +0100 Subject: [PATCH] Fix typo --- src/libhictk/hic/include/hictk/hic/impl/block_reader_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libhictk/hic/include/hictk/hic/impl/block_reader_impl.hpp b/src/libhictk/hic/include/hictk/hic/impl/block_reader_impl.hpp index bcfc7ae7..8478134e 100644 --- a/src/libhictk/hic/include/hictk/hic/impl/block_reader_impl.hpp +++ b/src/libhictk/hic/include/hictk/hic/impl/block_reader_impl.hpp @@ -71,7 +71,7 @@ inline double HiCBlockReader::avg() const { const auto bin_size = bins().bin_size(); // We round down for two reasons: // - to be consistent with straw - // - and because the last bin is usually smaller than the bin_size + // - because the last bin is usually smaller than the bin_size const auto num_bins1 = chrom1().size() / bin_size; const auto num_bins2 = chrom2().size() / bin_size;