@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
16 lines (15 loc) • 543 B
JavaScript
import AdapterType from '@jbrowse/core/pluggableElementTypes/AdapterType';
import configSchema from './configSchema';
export default function BigWigAdapterF(pluginManager) {
pluginManager.addAdapterType(() => new AdapterType({
name: 'BigWigAdapter',
displayName: 'BigWig adapter',
configSchema,
adapterCapabilities: [
'hasResolution',
'hasLocalStats',
'hasGlobalStats',
],
getAdapterClass: () => import('./BigWigAdapter').then(r => r.default),
}));
}