noodles-util 0.17.0

noodles support utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! I/O for variant formats.

mod format;
pub mod reader;
pub mod writer;

pub use self::{
    format::{Compression, Format},
    reader::Reader,
    writer::Writer,
};