UNPKG

@jbrowse/plugin-config

Version:

JBrowse 2 config utilities

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