Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Feb 19, 2025
1 parent 3c72286 commit c7772de
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/fastq_chars.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,21 +79,21 @@ constexpr unsigned int n_characters = 256;
// anonymous namespace: limit visibility and usage to this translation unit
namespace {

struct statistics {
std::vector<uint64_t> sequence_chars;
std::vector<uint64_t> quality_chars;
std::vector<uint64_t> tail_chars;
std::vector<int> maxrun;
uint64_t total_chars = 0;
uint64_t seq_count = 0;
unsigned char qmin_n = 255;
unsigned char qmax_n = 0;
char qmin = '\0';
char qmax = '\0';
char fastq_ascii = '\0';
char fastq_qmin = '\0';
char fastq_qmax = '\0';
};
struct statistics {
std::vector<uint64_t> sequence_chars;
std::vector<uint64_t> quality_chars;
std::vector<uint64_t> tail_chars;
std::vector<int> maxrun;
uint64_t total_chars = 0;
uint64_t seq_count = 0;
unsigned char qmin_n = 255;
unsigned char qmax_n = 0;
char qmin = '\0';
char qmax = '\0';
char fastq_ascii = '\0';
char fastq_qmin = '\0';
char fastq_qmax = '\0';
};


auto guess_quality_offset(struct statistics & stats) -> void {
Expand Down Expand Up @@ -141,7 +141,7 @@ struct statistics {
assert(index >= 0);
assert(index <= char_max);
stats.qmax = static_cast<char>(index);
}
}


auto stats_message(std::FILE * output_stream,
Expand Down

0 comments on commit c7772de

Please sign in to comment.