@gmod/indexedfasta
Version:
read indexed fasta and bgzipped fasta formats
13 lines (12 loc) • 420 B
TypeScript
import IndexedFasta from './indexedFasta.ts';
import type { GenericFilehandle } from 'generic-filehandle2';
export default class BgzipIndexedFasta extends IndexedFasta {
constructor({ fasta, path, fai, faiPath, gzi, gziPath, }: {
fasta?: GenericFilehandle;
path?: string;
fai?: GenericFilehandle;
faiPath?: string;
gzi?: GenericFilehandle;
gziPath?: string;
});
}