Skip to content

Commit 4ad8729

Browse files
committed
Format
1 parent ed83fae commit 4ad8729

3 files changed

Lines changed: 39 additions & 31 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ Transparently read
66
[indexed block-gzipped (BGZF)](http://www.htslib.org/doc/bgzip.html) files, such
77
as those created by bgzip, using coordinates from the uncompressed file.
88

9-
Uses WASM (libdeflate) for decompression. Used by [@gmod/indexedfasta](https://github.com/GMOD/indexedfasta) for bgzip-indexed FASTA files and [@gmod/bam](https://github.com/GMOD/bam-js) for BAM file decoding.
9+
Uses WASM (libdeflate) for decompression. Used by
10+
[@gmod/indexedfasta](https://github.com/GMOD/indexedfasta) for bgzip-indexed
11+
FASTA files and [@gmod/bam](https://github.com/GMOD/bam-js) for BAM file
12+
decoding.
1013

1114
## Install
1215

@@ -69,7 +72,8 @@ be linked from [jbrowse.org](http://jbrowse.org).
6972

7073
## Publishing
7174

72-
[Trusted publishing](https://docs.npmjs.com/about-trusted-publishing) via GitHub Actions.
75+
[Trusted publishing](https://docs.npmjs.com/about-trusted-publishing) via GitHub
76+
Actions.
7377

7478
```bash
7579
npm version patch # or minor/major

pnpm-lock.yaml

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/unzip.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ export async function unzip(inputData: Uint8Array) {
7272
}
7373
}
7474

75-
export async function unzipChunkSlice(inputData: Uint8Array, chunk: Chunk, _blockCache?: unknown) {
75+
export async function unzipChunkSlice(
76+
inputData: Uint8Array,
77+
chunk: Chunk,
78+
_blockCache?: unknown,
79+
) {
7680
const { minv, maxv } = chunk
7781
try {
7882
const result = await decompressChunkSlice(

0 commit comments

Comments
 (0)