UNPKG

apr144-bam

Version:

Parser for BAM and BAM index (bai) files

16 lines 394 B
import IndexFile from './indexFile'; export default class NullIndex extends IndexFile { 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'); } } //# sourceMappingURL=nullIndex.js.map