Documentation ¶
Overview ¶
Package fastq decodes and encodes fastq files.
This package uses the format described in: https://en.wikipedia.org/wiki/FASTQ_format
This package does not validate sequence and quality characters.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Fastq ¶
type Fastq struct { Name []byte // Entry name (without the '@'). Sequence []byte // Sequence. Quals []byte // Qualities as ASCII characters. }
Fastq is a single sequence in a fastq file.
func (*Fastq) MarshalText ¶ added in v0.1.17
MarshalText returns the textual representation of f in fastq format. Includes a trailing new line.
Click to show internal directories.
Click to hide internal directories.