@gmod/cram
Advanced tools
Comparing version 1.6.3 to 1.6.4
@@ -0,1 +1,5 @@ | ||
# v1.6.4 | ||
- Fix off by one in returning features from getRecordsFromRange | ||
# v1.6.3 | ||
@@ -2,0 +6,0 @@ |
@@ -199,3 +199,3 @@ "use strict"; | ||
var entryEnd = entry.start + entry.span; | ||
if (entryStart >= queryEnd) { | ||
if (entryStart > queryEnd) { | ||
return -1; | ||
@@ -202,0 +202,0 @@ } // entry is ahead of query |
@@ -141,3 +141,3 @@ import AbortablePromiseCache from 'abortable-promise-cache'; | ||
const entryEnd = entry.start + entry.span; | ||
if (entryStart >= queryEnd) { | ||
if (entryStart > queryEnd) { | ||
return -1; | ||
@@ -144,0 +144,0 @@ } // entry is ahead of query |
{ | ||
"name": "@gmod/cram", | ||
"version": "1.6.3", | ||
"version": "1.6.4", | ||
"description": "read CRAM files with pure Javascript", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -164,3 +164,3 @@ import AbortablePromiseCache from 'abortable-promise-cache' | ||
const entryEnd = entry.start + entry.span | ||
if (entryStart >= queryEnd) { | ||
if (entryStart > queryEnd) { | ||
return -1 | ||
@@ -167,0 +167,0 @@ } // entry is ahead of query |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
1017746