gtars_io/lib.rs
1//! # Input/Output utilities for genomic data.
2//!
3//! This small module provides some small, but convenient utility functions for writing and reading
4//! genomic data to and from disk. Most importantly, it contains functions for saving and reading
5//! `.gtok` files to disk - special files that store pre-tokenized genomic data for use in machine
6//! learning pipelines.
7//!
8pub mod consts;
9pub mod gtok;
10
11// re-expose core functions
12pub use consts::*;
13pub use gtok::*;