Skip to content

Commit

Permalink
Title cases in geneORA
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpaul85 authored and xzhou82 committed Feb 6, 2025
1 parent fc2cd68 commit a15a494
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/plots/geneORA.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class geneORA {
this.dom.controlsDiv.selectAll('*').remove()
const inputs = [
{
label: 'P-value filter cutoff (linear scale)',
label: 'P-value Filter Cutoff (Linear Scale)',
type: 'number',
chartType: 'geneORA',
settingsKey: 'pvalue',
Expand All @@ -54,18 +54,18 @@ class geneORA {
max: 1
},
{
label: 'P-value filter type',
label: 'P-value Filter Type',
type: 'radio',
chartType: 'geneORA',
settingsKey: 'adjusted_original_pvalue',
title: 'Toggle between original and adjusted pvalues for volcano plot',
options: [
{ label: 'adjusted', value: 'adjusted' },
{ label: 'original', value: 'original' }
{ label: 'Adjusted', value: 'adjusted' },
{ label: 'Original', value: 'original' }
]
},
{
label: 'Gene set size filter cutoff',
label: 'Gene Set Size Filter Cutoff',
type: 'number',
chartType: 'geneORA',
settingsKey: 'gene_set_size_cutoff',
Expand All @@ -74,7 +74,7 @@ class geneORA {
max: 20000
},
{
label: 'Filter non-coding genes',
label: 'Filter Non-coding Genes',
type: 'checkbox',
chartType: 'geneORA',
settingsKey: 'filter_non_coding_genes',
Expand All @@ -84,7 +84,7 @@ class geneORA {
]

const geneSet = {
label: 'Gene set group',
label: 'Gene Set Group',
type: 'dropdown',
chartType: 'geneORA',
settingsKey: 'pathway',
Expand Down

0 comments on commit a15a494

Please sign in to comment.