biolic 0.1.0

A modular bioinformatics toolkit in Rust for long-read sequence processing
Documentation
1
2
3
4
5
6
7
8
9
10
//! Input/output abstractions.
//!
//! The reader subsystem provides a unified interface to read records from any
//! supported format (FASTQ, FASTQ.gz, FASTA, BAM). All modules consume `Record`
//! instances from a `RecordReader` trait object, isolating them from format
//! details.

pub mod reader;

pub use reader::{open_reader, RecordReader};