UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

16 lines (15 loc) 712 B
import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; import type { QuantitativeStats } from '@jbrowse/core/util/stats'; import type { StopToken } from '@jbrowse/core/util/stopToken'; export declare function getQuantitativeStatsAutorun(self: { quantitativeStatsReady: boolean; configuration: AnyConfigurationModel; adapterConfig: AnyConfigurationModel; autoscaleType: string; isMinimized: boolean; adapterProps: () => Record<string, unknown>; setStatsLoading: (token: StopToken) => void; setError: (error: unknown) => void; setStatusMessage: (str: string) => void; updateQuantitativeStats: (stats: QuantitativeStats, region: string) => void; }): void;