1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Readers and writers for common bioinformatics file formats.


pub mod fastq;
pub mod fasta;
pub mod bed;
pub mod gff;

/// Strand information.
#[derive(Debug, PartialEq)]
pub enum Strand {
    Forward,
    Reverse,
    Unknown,
}