@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
13 lines (12 loc) • 450 B
JavaScript
import configSchema from "./configSchema.js";
import { AdapterType } from "../../pluggableElementTypes/index.js";
export default function CytobandAdapterF(pluginManager) {
pluginManager.addAdapterType(() => new AdapterType({
name: 'CytobandAdapter',
configSchema,
adapterMetadata: {
hiddenFromGUI: true,
},
getAdapterClass: () => import("./CytobandAdapter.js").then(f => f.default),
}));
}