deepbiop_fq/
lib.rs

1//! **deepbiop-fq** is a Rust library for reading and writing FASTQ files.
2
3pub mod dataset;
4pub mod encode;
5pub mod error;
6pub mod io;
7pub mod predicts;
8pub mod types;
9pub mod utils;
10
11#[cfg(feature = "python")]
12pub mod python;