UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

22 lines (21 loc) 823 B
import { ConfigurationSchema } from '@jbrowse/core/configuration'; import { types } from 'mobx-state-tree'; import baseWiggleRendererConfigSchema from '../configSchema'; function x() { } const configSchema = ConfigurationSchema('MultiLineRenderer', { displayCrossHatches: { type: 'boolean', description: 'choose to draw cross hatches (sideways lines)', defaultValue: false, }, summaryScoreMode: { type: 'stringEnum', model: types.enumeration('Score type', ['max', 'min', 'avg', 'whiskers']), description: 'choose whether to use max/min/average or whiskers which combines all three into the same rendering', defaultValue: 'avg', }, }, { baseConfiguration: baseWiggleRendererConfigSchema, explicitlyTyped: true, }); export default configSchema;