@gmod/bam
Version:
Parser for BAM and BAM index (bai) files
22 lines • 658 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const indexFile_1 = __importDefault(require("./indexFile"));
class NullIndex extends indexFile_1.default {
lineCount() {
throw new Error('never called');
}
_parse() {
throw new Error('never called');
}
async indexCov() {
throw new Error('never called');
}
blocksForRange() {
throw new Error('never called');
}
}
exports.default = NullIndex;
//# sourceMappingURL=nullIndex.js.map