apr144-bam
Version:
Parser for BAM and BAM index (bai) files
19 lines (15 loc) • 410 B
text/typescript
import IndexFile from './indexFile'
export default class NullIndex extends IndexFile {
public lineCount(): Promise<any> {
throw new Error('never called')
}
protected _parse(): Promise<any> {
throw new Error('never called')
}
public async indexCov(): Promise<any> {
throw new Error('never called')
}
public blocksForRange(): Promise<any> {
throw new Error('never called')
}
}