@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
15 lines (14 loc) • 505 B
TypeScript
import type { Source } from '../util.ts';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { LastStopTokenCheck, Region } from '@jbrowse/core/util';
export interface GetScoreMatrixArgs {
adapterConfig: AnyConfigurationModel;
stopToken?: string;
stopTokenCheck?: LastStopTokenCheck;
sessionId: string;
headers?: Record<string, string>;
regions: Region[];
bpPerPx: number;
sources: Source[];
statusCallback?: (arg: string) => void;
}