Mercurial > repos > fubar > jbrowse2
view x/bedscoreplugin.js @ 131:69c6ea16c148 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 commit 3cf9ec268c0719caf060b7d6bf5c0159909c348a
author | fubar |
---|---|
date | Sat, 12 Oct 2024 23:11:22 +0000 |
parents | 49f3d3878413 |
children |
line wrap: on
line source
// colour bed regions according to score - must have columns and score as part of the adapter setup ;(function () { class Plugin { name = 'BedScorePlugin'; version = '1.0'; install(pluginManager) { pluginManager.jexl.addFunction('customColor', feature => { if (Number(feature.get('score')) > 0) { return 'red'; } else { return 'blue'; } }) } configure(pluginManager) {} } // the plugin will be included in both the main thread and web worker, so // install plugin to either window or self (webworker global scope) ;(typeof self !== 'undefined' ? self : window).JBrowsePluginBedScorePlugin = { default: Plugin, } })()