zoe 0.0.31

A nightly library for viral genomics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Arbitrary implementations and specification structs for record types in the
//! [`records`](crate::data::records) module.

mod fasta;
mod fastq;
mod sam;

pub use fastq::*;
pub use sam::*;

#[cfg(feature = "dev-generic-fasta")]
mod generic_fasta;

#[cfg(feature = "dev-generic-fasta")]
pub use generic_fasta::*;