Skip to content

Commit

Permalink
Tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rrwick committed Jul 1, 2021
1 parent 40abeb6 commit e348c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Read::Read(std::string name, char * seq, char * qscores, int length, Kmers * kme
m_passed = true;
if (args->min_length_set && m_length < args->min_length)
m_passed = false;
else if (args->max_length_set && m_length > args->max_length)
else if (args->max_length_set && m_length > args->max_length)
m_passed = false;
else if (args->min_mean_q_set && m_mean_quality < args->min_mean_q)
m_passed = false;
Expand Down

0 comments on commit e348c15

Please sign in to comment.