Skip to content

Commit

Permalink
reset imageUrl on main to avoid downloading a previous image. Update …
Browse files Browse the repository at this point in the history
…labels after gdc comments
  • Loading branch information
airenzp committed Feb 25, 2025
1 parent ea019e8 commit 29d24b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions client/plots/gsea.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions client/plots/singleCellPlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 3 additions & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@

Fix
- Updated labels requested on [JIRA] (FEAT-857)
- Fixed bug in the download image in GSEA

0 comments on commit 29d24b7

Please sign in to comment.