UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

21 lines (20 loc) 720 B
import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; import type { StopToken } from '@jbrowse/core/util/stopToken'; export interface Source { name: string; source: string; color?: string; group?: string; } export declare function getMultiWiggleSourcesAutorun(self: { quantitativeStatsReady: boolean; configuration: AnyConfigurationModel; adapterConfig: AnyConfigurationModel; autoscaleType: string; isMinimized: boolean; adapterProps: () => Record<string, unknown>; setSourcesLoading: (aborter: StopToken) => void; setError: (error: unknown) => void; setStatusMessage: (str: string) => void; setSources: (sources: Source[]) => void; }): void;