index.d.ts 508 B

1234
  1. declare const writeSequence: (sequenceName: string, sequence: string, filePath: string, lineN?: number) => Promise<boolean>;
  2. declare const makeReference: (sequenceName: string, sequence: string, filePath: string, lineN?: number) => Promise<void>;
  3. declare const asyncBwaMem: (refPath: string, reads: string | Array<string> | Array<Array<string>>, runName: string, libName: string, outputDir: string, onData: Function, options?: any) => Promise<string[]>;
  4. export { asyncBwaMem, writeSequence, makeReference };