-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Previously, raw log-fold changes were median-centered by default. Raw log-fold changes are no longer median-centered so that they accurately reflect the fold change before any normalization is performed. - When a one-sample T-test or no test is performed, raw average abundances per group are reported in the place of fold change. Column headers and descriptors in the exported excel file have been updated to reflect this for these cases. - Help text has been updated to clarify that data must be log-transformed prior to statistical analysis. The statistical testing performed in Protigy is not valid for non-log-transformed data.
- Loading branch information
Showing
4 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
## | ||
## This file defines the server logical of the app. It also takes care of most of the user interface. | ||
## | ||
## Last updated January 5, 2023 by Natalie Clark ([email protected]) - v 1.1.1 | ||
## Last updated January 18, 2023 by Natalie Clark ([email protected]) - v 1.1.2 | ||
################################################################################################################ | ||
p_load(shiny) | ||
|
||
|
@@ -2305,7 +2305,7 @@ shinyServer( | |
|
||
list( | ||
checkboxInput('intensity','Intensity data',FALSE), | ||
radioButtons('log.transform', 'Log-transformation', choices=c('none', 'log10', 'log2'), selected=global.param$log.transform), #checkboxInput('norm.per.group', 'Normalize per group', value = global.param$norm.per.group ), | ||
radioButtons('log.transform', 'Log-transformation', choices=c('none', 'log10', 'log2'), selected=global.param$log.transform), #checkboxInput('norm.per.group', 'Normalize per group', value = global.param$norm.per.group ), | ||
radioButtons('norm.data', 'Data normalization', choices=c('Median', 'Median (non-zero)', 'Median-MAD', 'Median-MAD (non-zero)', 'Upper-quartile', '2-component', 'Quantile', 'VSN', 'none'), selected=global.param$norm.data), #checkboxInput('norm.per.group', 'Normalize per group', value = global.param$norm.per.group), | ||
#sliderInput('na.filt.val', 'Max. % missing values', min=0, max=100, value=global.param$na.filt.val), | ||
numericInput('na.filt.val', 'Max. % missing values', min=0, max=100, step=5, value=global.param$na.filt.val), | ||
|
@@ -2331,7 +2331,7 @@ shinyServer( | |
list( | ||
checkboxInput('intensity','Intensity data',FALSE), | ||
#radioButtons('log.transform', 'Log-transformation', choices=c('none', 'log10', 'log2'), selected=global.param$log.transform), | ||
radioButtons('log.transform', 'Log-transformation', choices=c('none', 'log10', 'log2'), selected=input$log.transform), #checkboxInput('norm.per.group', 'Normalize per group', value = input$norm.per.group), | ||
radioButtons('log.transform', 'Log-transformation', choices=c('none', 'log10', 'log2'), selected=input$log.transform), #checkboxInput('norm.per.group', 'Normalize per group', value = input$norm.per.group), | ||
|
||
#radioButtons('norm.data', 'Data normalization', choices=c('Median', 'Median (non-zero)', 'Median-MAD', 'Median-MAD (non-zero)', 'Upper-quartile', '2-component', 'Quantile', 'VSN', 'none'), selected=global.param$norm.data), | ||
radioButtons('norm.data', 'Data normalization', choices=c('Median', 'Median (non-zero)', 'Median-MAD', 'Median-MAD (non-zero)', 'Upper-quartile', '2-component', 'Quantile', 'VSN', 'none'), selected=input$norm.data), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters