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