Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Oct 13, 2023
1 parent e0c95aa commit 18eef13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/display_layout/general.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ int execute(config const & cfg)
<< shared_kmers.size() << '\t' //
<< ub_count << '\t' //
<< (is_merged ? "merged" : "split") << '\t' //
<< split_count << '\t'
<< (is_merged ? merge_estimate : avg_kmer_count) << '\n';
<< split_count << '\t' << (is_merged ? merge_estimate : avg_kmer_count) << '\n';
split_count = 0u; // Subsequent split bins display 0, the first split bin displays the actual split count.
}
};
Expand Down
1 change: 0 additions & 1 deletion src/display_layout/shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ struct config
void execute_general(config const & cfg);
void execute_sizes(config const & cfg);


void process_file(std::string const & filename,
std::vector<uint64_t> & current_kmers,
seqan::hibf::sketch::hyperloglog & sketch,
Expand Down

0 comments on commit 18eef13

Please sign in to comment.