UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

20 lines (19 loc) 638 B
import type { Source } from './util.ts'; import type { Feature } from '@jbrowse/core/util'; import type { Region } from '@jbrowse/core/util/types'; interface MultiWiggleDisplayModel { isMultiRow: boolean; setFeatureUnderMouse: (f?: Feature) => void; selectFeature: (f: Feature) => void; } declare const MultiWiggleRendering: (props: { regions: Region[]; features: Map<string, Feature>; bpPerPx: number; width: number; height: number; blockKey: string; sources: Source[]; displayModel: MultiWiggleDisplayModel; }) => import("react/jsx-runtime").JSX.Element; export default MultiWiggleRendering;