UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

12 lines (11 loc) 411 B
import { lazy } from 'react'; import LinePlotRenderer from "./LinePlotRenderer.js"; import configSchema from "./configSchema.js"; export default function LinePlotRendererF(pluginManager) { pluginManager.addRendererType(() => new LinePlotRenderer({ name: 'LinePlotRenderer', ReactComponent: lazy(() => import("../WiggleRendering.js")), configSchema, pluginManager, })); }