Fastq sequence format reader type.
| 24 | |
| 25 | // Fastq sequence format reader type. |
| 26 | type Reader struct { |
| 27 | f file.SectionReader |
| 28 | r *bufio.Reader |
| 29 | } |
| 30 | |
| 31 | // Returns a new fastq format reader using r. |
| 32 | func NewReader(f file.SectionReader) seq.ReadRewinder { |
nothing calls this directly
no outgoing calls
no test coverage detected