Skip to content

Commit

Permalink
add support for large fastqs
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Oct 30, 2022
1 parent 4637021 commit 966991c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastq-scan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <math.h>
#include <sstream>
using namespace std;
const string VERSION = "1.0.0";
const string VERSION = "1.0.1";
const int MAX_READ_LENGTH = 50000000;

class Stats {
Expand All @@ -29,8 +29,8 @@ class Stats {

// Qual stats
vector<double> per_read_qual;
vector<unsigned int> per_base_qual;
vector<unsigned int> per_base_count;
vector<unsigned long int> per_base_qual;
vector<unsigned long int> per_base_count;
int phred;
unsigned int qual_min;
unsigned int qual_max;
Expand Down

0 comments on commit 966991c

Please sign in to comment.