Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Dec 4, 2023
1 parent a1311ff commit 63300e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hictk/dump/dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ static void dump_pixels_gw(File& f, std::string_view normalization, bool join, b

if (f.is_hic()) {
const auto& ff = f.get<hic::File>();
const auto sel = ff.fetch(normalization);
const auto sel = ff.fetch(balancing::Method{normalization});
dump_pixels(sel.template begin<double>(sorted), sel.template end<double>(), ff.bins_ptr(),
join);
return;
}

const auto& ff = f.get<cooler::File>();
const auto sel = ff.fetch(normalization);
const auto sel = ff.fetch(balancing::Method{normalization});
dump_pixels(sel.template begin<double>(), sel.template end<double>(), ff.bins_ptr(), join);
}

Expand Down

0 comments on commit 63300e7

Please sign in to comment.