@gmod/cram 5.0.5 → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -4
- package/dist/cram-bundle.js +1 -1
- package/dist/cramFile/container/compressionScheme.js.map +1 -1
- package/dist/cramFile/file.js +7 -2
- package/dist/cramFile/file.js.map +1 -1
- package/dist/cramFile/sectionParsers.d.ts +1 -1
- package/dist/htscodecs/rans.js +2 -2
- package/dist/htscodecs/rans.js.map +1 -1
- package/dist/htscodecs/rans4x16.js +2 -2
- package/dist/htscodecs/rans4x16.js.map +1 -1
- package/dist/seek-bzip/index.js +2 -2
- package/dist/seek-bzip/index.js.map +1 -1
- package/dist/unzip.js +36 -2
- package/dist/unzip.js.map +1 -1
- package/esm/cramFile/container/compressionScheme.js.map +1 -1
- package/esm/cramFile/file.js +7 -2
- package/esm/cramFile/file.js.map +1 -1
- package/esm/cramFile/sectionParsers.d.ts +1 -1
- package/esm/htscodecs/rans.js +2 -2
- package/esm/htscodecs/rans.js.map +1 -1
- package/esm/htscodecs/rans4x16.js +2 -2
- package/esm/htscodecs/rans4x16.js.map +1 -1
- package/esm/seek-bzip/index.js +2 -2
- package/esm/seek-bzip/index.js.map +1 -1
- package/esm/unzip.js +2 -1
- package/esm/unzip.js.map +1 -1
- package/package.json +9 -9
- package/src/cramFile/container/compressionScheme.ts +1 -0
- package/src/cramFile/file.ts +5 -2
- package/src/cramFile/sectionParsers.ts +1 -1
- package/src/htscodecs/rans.ts +2 -2
- package/src/htscodecs/rans4x16.ts +2 -2
- package/src/seek-bzip/index.ts +2 -2
- package/src/unzip.ts +2 -1
package/README.md
CHANGED
|
@@ -171,7 +171,6 @@ Class of each CRAM record returned by this API.
|
|
|
171
171
|
##### Parameters
|
|
172
172
|
|
|
173
173
|
- `$0` **any** 
|
|
174
|
-
|
|
175
174
|
- `$0.flags`  
|
|
176
175
|
- `$0.cramFlags`  
|
|
177
176
|
- `$0.readLength`  
|
|
@@ -313,7 +312,6 @@ the actual substituted and reference base pairs, and will make the
|
|
|
313
312
|
|
|
314
313
|
- `refRegion`
|
|
315
314
|
**[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** 
|
|
316
|
-
|
|
317
315
|
- `refRegion.start`
|
|
318
316
|
**[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** 
|
|
319
317
|
- `refRegion.end`
|
|
@@ -360,7 +358,6 @@ that show insertions, deletions, substitutions, etc.
|
|
|
360
358
|
|
|
361
359
|
- `args`
|
|
362
360
|
**[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** 
|
|
363
|
-
|
|
364
361
|
- `args.cram` **CramFile** 
|
|
365
362
|
- `args.index` **Index-like** object that supports
|
|
366
363
|
getEntriesForRange(seqId,start,end) -> Promise\[Array\[index entries]]
|
|
@@ -440,7 +437,6 @@ Returns
|
|
|
440
437
|
|
|
441
438
|
- `args`
|
|
442
439
|
**[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** 
|
|
443
|
-
|
|
444
440
|
- `args.path`
|
|
445
441
|
**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** 
|
|
446
442
|
- `args.url`
|