Skip to content

Commit

Permalink
first cut at refactoring code so fastq parsing is divided into two pi…
Browse files Browse the repository at this point in the history
…eces, one inside CS, one outside
  • Loading branch information
BenLangmead committed Mar 17, 2016
1 parent 19af593 commit d6d4a1d
Show file tree
Hide file tree
Showing 6 changed files with 334 additions and 141 deletions.
1 change: 1 addition & 0 deletions filebuf.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ class FileBuf {
_buf_sz = _ins->gcount();
} else {
assert(_in != NULL);
// TODO: consider an _unlocked function
_buf_sz = fread(_buf, 1, BUF_SZ, _in);
}
_cur = 0;
Expand Down
Loading

0 comments on commit d6d4a1d

Please sign in to comment.