npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gmod/bgzf-filehandle

v6.3.2

Published

read from a compressed bgzip file (with .gzi) as if it were uncompressed

Readme

@gmod/bgzf-filehandle

NPM version Build Status

Reads block-gzipped (BGZF) files, such as those created by bgzip, using coordinates from the uncompressed file.

Uses WASM (libdeflate) for decompression. Used by @gmod/indexedfasta for bgzip-indexed FASTA files with gzi index, and also @gmod/bam and @gmod/tabix for block decoding.

Install

npm install @gmod/bgzf-filehandle

Usage

BgzfFilehandle

Read from a bgzip-compressed file with a .gzi index as if it were uncompressed:

import { BgzfFilehandle } from '@gmod/bgzf-filehandle'
import { LocalFile } from 'generic-filehandle2'

const f = new BgzfFilehandle({
  filehandle: new LocalFile('path/to/my_file.gz'),
  gziFilehandle: new LocalFile('path/to/my_file.gz.gzi'),
  blockConcurrency: 10, // max in-flight async batch reads (not threads), default 10
})

// read(length, position) — matches generic-filehandle2 convention
const data: Uint8Array = await f.read(300, 0)

The .gzi index maps uncompressed offsets to block starts; create one with bgzip -i my_file (or bgzip -r my_file.gz for an already-compressed file).

BGZF blocks are adjacent in the file, so every block a read touches is fetched as one contiguous range and decompressed in a single call — a read spanning 300 blocks is one request, not 300. Reads large enough to be split (over 32 MB uncompressed) produce several batches, and blockConcurrency caps how many of those are in flight at once.

unzip

Decompress a BGZF or plain gzip buffer. Falls back to plain gzip automatically if the input is not a valid BGZF stream:

import { unzip } from '@gmod/bgzf-filehandle'

const decompressed: Uint8Array = await unzip(compressedData)

unzipChunkSlice

Decompress a range of BGZF blocks and slice out a virtual file offset range (used by BAM/tabix readers with BAI/TBI indices):

import { MAX_BGZF_BLOCK_SIZE, unzipChunkSlice } from '@gmod/bgzf-filehandle'

const minv = { blockPosition: 1234, dataPosition: 56 }
const maxv = { blockPosition: 9876, dataPosition: 78 }

// input must be the bytes starting at minv.blockPosition, through the end of
// the block at maxv.blockPosition. That block's compressed length isn't
// recorded anywhere, so over-read by one maximum-size block to cover it
const compressedData = await filehandle.read(
  maxv.blockPosition + MAX_BGZF_BLOCK_SIZE - minv.blockPosition,
  minv.blockPosition,
)

const { buffer, cpositions, dpositions } = await unzipChunkSlice(
  compressedData,
  { minv, maxv },
)

buffer is a Uint8Array of the decompressed bytes between the two virtual offsets. cpositions and dpositions are Float64Array block boundaries in compressed (absolute file offset) and decompressed coordinates, useful for generating stable feature IDs across chunk boundaries. They come back as the typed arrays wasm produced — indexed reads and .length are all a consumer needs, so they are not copied into plain arrays on the way out.

Academic Use

This package was written with funding from the NHGRI as part of the JBrowse project. If you use it in an academic project that you publish, please cite the most recent JBrowse paper, which will be linked from jbrowse.org.

Contributing

See CONTRIBUTING.md for development and release steps.

License

MIT © Robert Buels, Colin Diesh