noodles-util 0.42.0

noodles support utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Variant format I/O.

mod compression_method;
mod format;
pub mod indexed_reader;
pub mod reader;
pub mod writer;

pub use self::{
    compression_method::CompressionMethod, format::Format, indexed_reader::IndexedReader,
    reader::Reader, writer::Writer,
};