Module bio::io::fastq

source ·
Expand description

FastQ reading and writing.

Example

use std::io;
use bio::io::fastq;
let reader = fastq::Reader::new(io::stdin());

Structs

A FastQ reader.
A FastQ record.
An iterator over the records of a FastQ file.
A FastQ writer.

Traits

Trait for FASTQ readers.