@jbrowse/plugin-config
Version:
JBrowse 2 config utilities
13 lines (12 loc) • 479 B
JavaScript
import { AdapterType } from '@jbrowse/core/pluggableElementTypes';
import configSchema from "./configSchema.js";
export default function FromConfigSequenceAdapterF(pluginManager) {
pluginManager.addAdapterType(() => new AdapterType({
name: 'FromConfigSequenceAdapter',
configSchema,
getAdapterClass: () => import("./FromConfigSequenceAdapter.js").then(r => r.default),
adapterMetadata: {
hiddenFromGUI: true,
},
}));
}