@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
27 lines (26 loc) • 1.09 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const configuration_1 = require("@jbrowse/core/configuration");
const mobx_state_tree_1 = require("mobx-state-tree");
const configSchema_1 = __importDefault(require("../configSchema"));
function x() { }
const configSchema = (0, configuration_1.ConfigurationSchema)('MultiLineRenderer', {
displayCrossHatches: {
type: 'boolean',
description: 'choose to draw cross hatches (sideways lines)',
defaultValue: false,
},
summaryScoreMode: {
type: 'stringEnum',
model: mobx_state_tree_1.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: configSchema_1.default,
explicitlyTyped: true,
});
exports.default = configSchema;