@gmod/bed
Version:
A BED file format parser with autoSql support
13 lines (12 loc) • 360 B
TypeScript
import type { AutoSqlSchema } from './util.ts';
export default class BED {
autoSql: AutoSqlSchema;
private attemptDefaultBed?;
constructor(opts?: {
autoSql?: string;
type?: string;
});
parseLine(line: string | string[], options?: {
uniqueId?: string;
}): Record<string, string | number | string[] | number[]>;
}