UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

21 lines (20 loc) 956 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = MultiQuantitativeTrackF; const TrackType_1 = __importDefault(require("@jbrowse/core/pluggableElementTypes/TrackType")); const models_1 = require("@jbrowse/core/pluggableElementTypes/models"); const configSchema_1 = __importDefault(require("./configSchema")); function MultiQuantitativeTrackF(pluginManager) { pluginManager.addTrackType(() => { const configSchema = (0, configSchema_1.default)(pluginManager); return new TrackType_1.default({ name: 'MultiQuantitativeTrack', displayName: 'Multi-quantitative track', configSchema, stateModel: (0, models_1.createBaseTrackModel)(pluginManager, 'MultiQuantitativeTrack', configSchema), }); }); }