Comparing version 3.0.0 to 3.0.1
@@ -0,1 +1,5 @@ | ||
## [3.0.1](https://github.com/GMOD/bam-js/compare/v3.0.0...v3.0.1) (2024-11-11) | ||
# [3.0.0](https://github.com/GMOD/bam-js/compare/v2.0.4...v3.0.0) (2024-11-07) | ||
@@ -2,0 +6,0 @@ |
@@ -175,3 +175,3 @@ "use strict"; | ||
for (const binChunk of binChunks) { | ||
chunks.push(binChunk); | ||
chunks.push(new chunk_1.default(binChunk.minv, binChunk.maxv, bin)); | ||
} | ||
@@ -178,0 +178,0 @@ } |
@@ -157,3 +157,3 @@ import { fromBytes } from './virtualOffset'; | ||
for (const binChunk of binChunks) { | ||
chunks.push(binChunk); | ||
chunks.push(new Chunk(binChunk.minv, binChunk.maxv, bin)); | ||
} | ||
@@ -160,0 +160,0 @@ } |
{ | ||
"name": "@gmod/bam", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Parser for BAM and BAM index (bai) files", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -192,3 +192,3 @@ import VirtualOffset, { fromBytes } from './virtualOffset' | ||
for (const binChunk of binChunks) { | ||
chunks.push(binChunk) | ||
chunks.push(new Chunk(binChunk.minv, binChunk.maxv, bin)) | ||
} | ||
@@ -207,2 +207,3 @@ } | ||
const vp = ba.linearIndex[i] | ||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition | ||
@@ -209,0 +210,0 @@ if (vp && (!lowest || vp.compareTo(lowest) < 0)) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
359391