diff bedscoreplugin.js @ 108:5d1259b88c27 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 commit 9de1453a009c254ab11b16ae8a56cb5c22b131bf
author fubar
date Sat, 29 Jun 2024 06:10:22 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bedscoreplugin.js	Sat Jun 29 06:10:22 2024 +0000
@@ -0,0 +1,26 @@
+// 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,
+    }
+})()