Skip to content

Commit

Permalink
Revert long matches
Browse files Browse the repository at this point in the history
  • Loading branch information
eaasna committed Nov 7, 2024
1 parent bf358a0 commit 1b82164
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/utilities/consolidate/consolidate_matches.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <filesystem>
#include <unordered_map>
#include <map>
#include <ranges>

#include <valik/shared.hpp>
Expand Down
6 changes: 3 additions & 3 deletions src/consolidate/consolidate_matches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ void consolidate_matches(search_arguments const & arguments)

//seqan3::debug_stream << before_duplicate_removal << '\t' << matches.size() << '\n';
// <query_ind, <refs>>
std::unordered_set<std::string> overabundant_queries{};
std::unordered_set<std::string> disabled_queries{};
std::set<std::string> overabundant_queries{};
std::set<std::string> disabled_queries{};

// <query_ind, match_count>>
std::unordered_map<std::string, size_t> total_match_counter{};
std::map<std::string, size_t> total_match_counter{};

decltype(matches) consolidated_matches{};

Expand Down

0 comments on commit 1b82164

Please sign in to comment.