31 breaking releases

0.32.0 Jul 14, 2024
0.30.0 May 16, 2024
0.28.0 Mar 28, 2024
0.26.0 Dec 14, 2023
0.2.0 Jul 21, 2021

#305 in Compression

Download history 960/week @ 2024-04-05 1122/week @ 2024-04-12 1140/week @ 2024-04-19 1150/week @ 2024-04-26 1032/week @ 2024-05-03 1103/week @ 2024-05-10 1607/week @ 2024-05-17 1595/week @ 2024-05-24 946/week @ 2024-05-31 1168/week @ 2024-06-07 1927/week @ 2024-06-14 1696/week @ 2024-06-21 612/week @ 2024-06-28 608/week @ 2024-07-05 1442/week @ 2024-07-12 1004/week @ 2024-07-19

3,853 downloads per month
Used in 75 crates (15 directly)

MIT license

125KB
3K SLoC

noodles-bgzf handles the reading and writing of the blocked gzip format (BGZF).

While the gzip format is typically a single stream, a BGZF is the concatenation of many gzip streams. Each stream is called a block, with its uncompressed data size being constrained to less than 64 KiB. This multistream gzip allows random access using virtual positions.

noodles-bgzf abstracts away the concept of blocks, implementing std::io::Read for the reader and std::io::Write for the writer.

Examples

Read an entire BGZF file

use noodles_bgzf as bgzf;
let mut reader = File::open("data.gz").map(bgzf::Reader::new)?;
let mut data = Vec::new();
reader.read_to_end(&mut data)?;

Write a BGZF file

use noodles_bgzf as bgzf;
let mut writer = File::create("data.gz").map(bgzf::Writer::new)?;
writer.write_all(b"noodles-bgzf")?;

Dependencies

~0.8–2.4MB
~39K SLoC