Skip to content

Commit 00eee64

Browse files
author
nthomasCUBE
authored
Merge pull request #1 from willemdek11/mtc_options
Add the option to not correct for multiple testing
2 parents 6bac49d + 4ab1d9d commit 00eee64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

methods.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ calc_cmp_transcriptomics_traits=function(v){
2323
tabPanel("Correlation with a trait",
2424
isolate(selectInput("phen0", "Select Phenotype",choices=cn)),
2525
radioButtons("corr_type", "Correlation coefficient:", c("Spearman" = "spearman","Pearson" = "pearson")),
26-
radioButtons("multiple_test_correction", "Multiple testing correction:", c("Benjamini-Hochberg (BH)"="BH","Bonferroni" = "bonferroni")),
26+
radioButtons("multiple_test_correction", "Multiple testing correction:", c("Benjamini-Hochberg (BH)"="BH","Bonferroni" = "bonferroni", "None" = "none")),
2727
isolate(actionButton("go_alpha2", "Go!"))
2828
))
2929
appendTab(inputId = "tabset",
@@ -32,7 +32,7 @@ calc_cmp_transcriptomics_traits=function(v){
3232
isolate(selectInput("phen2", "Phenotype-2",choices=cn)),
3333
isolate(selectInput("phen3", "Phenotype-3",choices=cn)),
3434
radioButtons("corr_type2", "Correlation coefficient:", c("Spearman" = "spearman","Pearson" = "pearson")),
35-
radioButtons("multiple_test_correction2", "Multiple testing correction:", c("Benjamini-Hochberg (BH)"="BH","Bonferroni" = "bonferroni")),
35+
radioButtons("multiple_test_correction2", "Multiple testing correction:", c("Benjamini-Hochberg (BH)"="BH","Bonferroni" = "bonferroni", "None" = "none")),
3636
radioButtons("significance_level", "Significance level:", c("0.001"=0.001,"0.05" = 0.05)),
3737
isolate(actionButton("go_alpha3", "Go!"))
3838
))

0 commit comments

Comments
 (0)