UNPKG

@jbrowse/plugin-config

Version:

JBrowse 2 config utilities

15 lines (14 loc) 546 B
import { AdapterType } from '@jbrowse/core/pluggableElementTypes'; import configSchema from "./configSchema.js"; export default function NcbiSequenceReportAliasAdapterF(pluginManager) { pluginManager.addAdapterType(() => { return new AdapterType({ name: 'NcbiSequenceReportAliasAdapter', configSchema, getAdapterClass: () => import("./NcbiSequenceReportAliasAdapter.js").then(r => r.default), adapterMetadata: { hiddenFromGUI: true, }, }); }); }