import { ConfigurationSchema } from '@jbrowse/core/configuration' import { createBaseTrackConfig } from '@jbrowse/core/pluggableElementTypes' import type PluginManager from '@jbrowse/core/PluginManager' /** * #config GWASTrack * #category track * used for GWAS (Genome-Wide Association Study) tracks with Manhattan plot display */ export default function configSchemaFactory(pluginManager: PluginManager) { return ConfigurationSchema( 'GWASTrack', {}, { /** * #baseConfiguration */ baseConfiguration: createBaseTrackConfig(pluginManager), }, ) }