UNPKG

@jbrowse/plugin-config

Version:

JBrowse 2 config utilities

13 lines (12 loc) 455 B
import { AdapterType } from '@jbrowse/core/pluggableElementTypes'; import configSchema from './configSchema'; export default function RefNameAliasAdapterF(pluginManager) { pluginManager.addAdapterType(() => new AdapterType({ name: 'RefNameAliasAdapter', configSchema, getAdapterClass: () => import('./RefNameAliasAdapter').then(r => r.default), adapterMetadata: { hiddenFromGUI: true, }, })); }