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