[][src]Module bio::io::fastq

FastQ reading and writing.

Example

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

Structs

Reader

A FastQ reader.

Record

A FastQ record.

Records

An iterator over the records of a FastQ file.

Writer

A FastQ writer.

Traits

FastqRead

Trait for FASTQ readers.