UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

14 lines (13 loc) 441 B
import type { Source } from '../util'; import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; import type { Region } from '@jbrowse/core/util'; export interface GetScoreMatrixArgs { adapterConfig: AnyConfigurationModel; stopToken?: string; sessionId: string; headers?: Record<string, string>; regions: Region[]; bpPerPx: number; sources: Source[]; statusCallback?: (arg: string) => void; }