]> git.donarmstrong.com Git - fastq-tools.git/blobdiff - src/parse.h
Added a program to adjust quality scores by a fixed offset.
[fastq-tools.git] / src / parse.h
index 64d3726174acc10648f45d9ce45cbba5015a3c64..d9bbac69c4ece25babbba03e12d93d160380a466 100644 (file)
@@ -3,12 +3,9 @@
  *
  * Copyright (c) 2011 by Daniel C. Jones <dcjones@cs.washington.edu>
  *
- * fastq-parse :
+ * parse :
  * A parser for FASTQ files.
  *
- * This parser is mostly derivative of Heng Li's.
- * See: http://lh3lh3.users.sourceforge.net/kseq.shtml
- *
  */
 
 #ifndef FASTQ_TOOLS_PARSE_H
@@ -52,6 +49,7 @@ typedef struct
 fastq_t* fastq_open(FILE*);
 void fastq_close(fastq_t*);
 int  fastq_next(fastq_t*, seq_t*);
+void fastq_rewind(fastq_t*);
 
 void fastq_print(FILE* fout, seq_t* seq);