UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

10 lines (9 loc) 364 B
import type { Source } from '../../../util.ts'; import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; export interface ReducedModel { sourcesWithoutLayout?: Source[]; layout?: Source[]; adapterConfig: AnyConfigurationModel; setLayout: (arg: Source[], clearTree?: boolean) => void; setClusterTree: (tree?: string) => void; }