@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
15 lines (14 loc) • 636 B
TypeScript
import RpcMethodTypeWithFiltersAndRenameRegions from '@jbrowse/core/pluggableElementTypes/RpcMethodTypeWithFiltersAndRenameRegions';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Region } from '@jbrowse/core/util';
export declare class MultiWiggleGetSources extends RpcMethodTypeWithFiltersAndRenameRegions {
name: string;
execute(args: {
adapterConfig: AnyConfigurationModel;
stopToken?: string;
sessionId: string;
headers?: Record<string, string>;
regions: Region[];
bpPerPx: number;
}, rpcDriverClassName: string): Promise<any>;
}