@jbrowse/plugin-wiggle
Version:
JBrowse 2 wiggle adapters, tracks, etc.
16 lines (15 loc) • 513 B
JavaScript
import { ConfigurationSchema } from '@jbrowse/core/configuration';
function x() { }
const MultiWiggleAdapter = ConfigurationSchema('MultiWiggleAdapter', {
subadapters: {
type: 'frozen',
defaultValue: [],
description: 'array of subadapter JSON objects',
},
bigWigs: {
type: 'frozen',
description: 'array of bigwig filenames, alternative to the subadapters slot',
defaultValue: [],
},
}, { explicitlyTyped: true });
export default MultiWiggleAdapter;