diff --git a/client/plots/gsea.js b/client/plots/gsea.js index 5b9ae39f4c..011f956736 100644 --- a/client/plots/gsea.js +++ b/client/plots/gsea.js @@ -185,6 +185,7 @@ class gsea { async main() { this.config = structuredClone(this.state.config) this.settings = this.config.settings.gsea + this.imageUrl = null // Reset the image URL await this.setControls() if (this.dom.header) this.dom.header.html( diff --git a/client/plots/singleCellPlot.js b/client/plots/singleCellPlot.js index 615a03839c..cd8efcd2fe 100644 --- a/client/plots/singleCellPlot.js +++ b/client/plots/singleCellPlot.js @@ -232,7 +232,7 @@ class singleCellPlot { if (q.singleCell?.DEgenes) { const label = this.dom.deDiv .append('label') - .html('View DE genes for cells of a cluster versus rest of the cells: ') + .html('View differentially expressed genes for cells of a cluster versus rest of the cells: ') this.dom.deselect = label.append('select').on('change', e => { const display = this.dom.deselect.node().value ? 'inline-block' : 'none' const cluster = this.dom.deselect.node().value.split(' ')[1] @@ -722,7 +722,7 @@ class singleCellPlot { if (this.app.opts.genome.termdbs) { // assumption is that can run gsea on the differential genes, when the genome-level termdb is available (which is right now geneset dbs) tabs.push({ - label: 'Gene Set Enrichment Analysis', + label: 'Gene Set Enrichment Analysis(GSEA)', id: DE_GSEA_TAB, active: false, callback: () => showActiveDETab(DE_GSEA_TAB) diff --git a/release.txt b/release.txt index 8b13789179..02b1c5bea0 100644 --- a/release.txt +++ b/release.txt @@ -1 +1,3 @@ - +Fix +- Updated labels requested on [JIRA] (FEAT-857) +- Fixed bug in the download image in GSEA