Skip to content

Commit

Permalink
Merge pull request #6 from bunbun/master
Browse files Browse the repository at this point in the history
Add support for pre-Casava 1.8 illumina headers
  • Loading branch information
richardmleggett committed Sep 16, 2014
2 parents f976f1f + 2831f85 commit b0b8324
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/nextclip.c
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,9 @@ void check_read_ids(MPStats* stats, FastQRead* read_one, FastQRead* read_two)

if (read_one->read_header[p] <= ' ') {
break;
}
else if (read_one->read_header[p] == '/') {
break;
} else {
p++;
}
Expand Down

0 comments on commit b0b8324

Please sign in to comment.