noodles-util 0.32.0

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

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,
};

/// A variant compression method.
#[deprecated(since = "0.20.0", note = "Use `CompressionMethod` instead.")]
pub type Compression = CompressionMethod;