Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed May 6, 2024
1 parent 7b1b324 commit a69116f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modle_tools/eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static void validate_regions_of_interest(const hictk::Reference &chroms,
std::vector<bed::BED> invalid_intervals{};
invalid_intervals.reserve(10);
for (const auto &interval : regions_of_interest) {
const auto match = chroms.find(interval.name);
const auto match = chroms.find(interval.chrom);
if (match == chroms.end()) {
if (invalid_intervals.size() < invalid_intervals.capacity()) {
invalid_intervals.push_back(interval);
Expand Down

0 comments on commit a69116f

Please sign in to comment.