@gmod/bbi 2.0.4 → 2.0.5

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/dist/bigwig.js CHANGED
@@ -1,19 +1,4 @@
1
1
  "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
2
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
18
3
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19
4
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -23,75 +8,36 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
23
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
24
9
  });
25
10
  };
26
- var __generator = (this && this.__generator) || function (thisArg, body) {
27
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29
- function verb(n) { return function (v) { return step([n, v]); }; }
30
- function step(op) {
31
- if (f) throw new TypeError("Generator is already executing.");
32
- while (_) try {
33
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34
- if (y = 0, t) op = [op[0] & 2, t.value];
35
- switch (op[0]) {
36
- case 0: case 1: t = op; break;
37
- case 4: _.label++; return { value: op[1], done: false };
38
- case 5: _.label++; y = op[1]; op = [0]; continue;
39
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
40
- default:
41
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45
- if (t[2]) _.ops.pop();
46
- _.trys.pop(); continue;
47
- }
48
- op = body.call(thisArg, _);
49
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51
- }
52
- };
53
11
  Object.defineProperty(exports, "__esModule", { value: true });
54
12
  exports.BigWig = void 0;
55
- var blockView_1 = require("./blockView");
56
- var bbi_1 = require("./bbi");
57
- var BigWig = /** @class */ (function (_super) {
58
- __extends(BigWig, _super);
59
- function BigWig() {
60
- return _super !== null && _super.apply(this, arguments) || this;
61
- }
13
+ const blockView_1 = require("./blockView");
14
+ const bbi_1 = require("./bbi");
15
+ class BigWig extends bbi_1.BBI {
62
16
  /**
63
17
  * Retrieves a BlockView of a specific zoomLevel
64
18
  *
65
19
  * @param scale - number
66
20
  * @param opts - An object containing basesPerSpan (e.g. pixels per basepair) or scale used to infer the zoomLevel to use
67
21
  */
68
- BigWig.prototype.getView = function (scale, opts) {
69
- return __awaiter(this, void 0, void 0, function () {
70
- var _a, zoomLevels, refsByName, fileSize, isBigEndian, uncompressBufSize, basesPerPx, maxLevel, i, zh, indexOffset;
71
- return __generator(this, function (_b) {
72
- switch (_b.label) {
73
- case 0: return [4 /*yield*/, this.getHeader(opts)];
74
- case 1:
75
- _a = _b.sent(), zoomLevels = _a.zoomLevels, refsByName = _a.refsByName, fileSize = _a.fileSize, isBigEndian = _a.isBigEndian, uncompressBufSize = _a.uncompressBufSize;
76
- basesPerPx = 1 / scale;
77
- maxLevel = zoomLevels.length;
78
- if (!fileSize) {
79
- // if we don't know the file size, we can't fetch the highest zoom level :-(
80
- maxLevel -= 1;
81
- }
82
- for (i = maxLevel; i >= 0; i -= 1) {
83
- zh = zoomLevels[i];
84
- if (zh && zh.reductionLevel <= 2 * basesPerPx) {
85
- indexOffset = Number(zh.indexOffset);
86
- return [2 /*return*/, new blockView_1.BlockView(this.bbi, refsByName, indexOffset, isBigEndian, uncompressBufSize > 0, 'summary')];
87
- }
88
- }
89
- return [2 /*return*/, this.getUnzoomedView(opts)];
22
+ getView(scale, opts) {
23
+ return __awaiter(this, void 0, void 0, function* () {
24
+ const { zoomLevels, refsByName, fileSize, isBigEndian, uncompressBufSize } = yield this.getHeader(opts);
25
+ const basesPerPx = 1 / scale;
26
+ let maxLevel = zoomLevels.length;
27
+ if (!fileSize) {
28
+ // if we don't know the file size, we can't fetch the highest zoom level :-(
29
+ maxLevel -= 1;
30
+ }
31
+ for (let i = maxLevel; i >= 0; i -= 1) {
32
+ const zh = zoomLevels[i];
33
+ if (zh && zh.reductionLevel <= 2 * basesPerPx) {
34
+ const indexOffset = Number(zh.indexOffset);
35
+ return new blockView_1.BlockView(this.bbi, refsByName, indexOffset, isBigEndian, uncompressBufSize > 0, 'summary');
90
36
  }
91
- });
37
+ }
38
+ return this.getUnzoomedView(opts);
92
39
  });
93
- };
94
- return BigWig;
95
- }(bbi_1.BBI));
40
+ }
41
+ }
96
42
  exports.BigWig = BigWig;
97
43
  //# sourceMappingURL=bigwig.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bigwig.js","sourceRoot":"","sources":["../src/bigwig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAAuC;AACvC,6BAA2C;AAE3C;IAA4B,0BAAG;IAA/B;;IAkCA,CAAC;IAjCC;;;;;OAKG;IACa,wBAAO,GAAvB,UAAwB,KAAa,EAAE,IAAoB;;;;;4BAEvD,qBAAM,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAA;;wBADtB,KACJ,SAA0B,EADpB,UAAU,gBAAA,EAAE,UAAU,gBAAA,EAAE,QAAQ,cAAA,EAAE,WAAW,iBAAA,EAAE,iBAAiB,uBAAA;wBAElE,UAAU,GAAG,CAAC,GAAG,KAAK,CAAA;wBACxB,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAA;wBAChC,IAAI,CAAC,QAAQ,EAAE;4BACb,4EAA4E;4BAC5E,QAAQ,IAAI,CAAC,CAAA;yBACd;wBAED,KAAS,CAAC,GAAG,QAAQ,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE;4BAC/B,EAAE,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;4BACxB,IAAI,EAAE,IAAI,EAAE,CAAC,cAAc,IAAI,CAAC,GAAG,UAAU,EAAE;gCACvC,WAAW,GAAG,MAAM,CAAC,EAAE,CAAC,WAAW,CAAC,CAAA;gCAE1C,sBAAO,IAAI,qBAAS,CAClB,IAAI,CAAC,GAAG,EACR,UAAU,EACV,WAAW,EACX,WAAW,EACX,iBAAiB,GAAG,CAAC,EACrB,SAAS,CACV,EAAA;6BACF;yBACF;wBACD,sBAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,EAAA;;;;KAClC;IACH,aAAC;AAAD,CAAC,AAlCD,CAA4B,SAAG,GAkC9B;AAlCY,wBAAM"}
1
+ {"version":3,"file":"bigwig.js","sourceRoot":"","sources":["../src/bigwig.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAuC;AACvC,+BAA2C;AAE3C,MAAa,MAAO,SAAQ,SAAG;IAC7B;;;;;OAKG;IACa,OAAO,CAAC,KAAa,EAAE,IAAoB;;YACzD,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,EAAE,iBAAiB,EAAE,GACxE,MAAM,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAA;YAC5B,MAAM,UAAU,GAAG,CAAC,GAAG,KAAK,CAAA;YAC5B,IAAI,QAAQ,GAAG,UAAU,CAAC,MAAM,CAAA;YAChC,IAAI,CAAC,QAAQ,EAAE;gBACb,4EAA4E;gBAC5E,QAAQ,IAAI,CAAC,CAAA;aACd;YAED,KAAK,IAAI,CAAC,GAAG,QAAQ,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE;gBACrC,MAAM,EAAE,GAAG,UAAU,CAAC,CAAC,CAAC,CAAA;gBACxB,IAAI,EAAE,IAAI,EAAE,CAAC,cAAc,IAAI,CAAC,GAAG,UAAU,EAAE;oBAC7C,MAAM,WAAW,GAAG,MAAM,CAAC,EAAE,CAAC,WAAW,CAAC,CAAA;oBAE1C,OAAO,IAAI,qBAAS,CAClB,IAAI,CAAC,GAAG,EACR,UAAU,EACV,WAAW,EACX,WAAW,EACX,iBAAiB,GAAG,CAAC,EACrB,SAAS,CACV,CAAA;iBACF;aACF;YACD,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,CAAA;QACnC,CAAC;KAAA;CACF;AAlCD,wBAkCC"}