Module bio::io::fasta

source ·
Expand description

FASTA format reading and writing.

Example

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

Structs

A FASTA index as created by SAMtools (.fai).
A FASTA reader with an index as created by SAMtools (.fai).
A FASTA reader.
A FASTA record.
An iterator over the records of a Fasta file.
A sequence record returned by the FASTA index.
A Fasta writer.

Traits

Trait for FASTA readers.