It seems that the adjusted p values in the collapsed output was calculated from filtered p values. Shouldn't multiple testing correction be done before filtering p-values with the default pvalue cutoff of 0.05? To do the multiple testing correction correctly, could I set --pval-cutoff 1 and then filter the output by adjusted_pval < 0.05 manually?
Besides, I noticed that there are two parameters on calculating combined p-values:
--dependence_test {none,mic,pcc}
the method for measuring the dependence between frame1 and frame2. This test could help determine whether the combined p-values should be ajusted to account for the dependence between two test (i.e. F0 vs F1 and F0 vs F2). mic: Maximal Information
Coefficient; pcc: Pearson Correlation Coefficient.
--stouffer_adj {none,nyholt,liji,gao,galwey}
the method for adjustment the cominbed p-values to account for the dependence between two tests (i.e. F0 vs F1 and F0 vs F2). see details at: https://search.r-project.org/CRAN/refmans/poolr/html/stouffer.html
What's the recommended way to set the two parameters?
Dear developers,
It seems that the adjusted p values in the collapsed output was calculated from filtered p values. Shouldn't multiple testing correction be done before filtering p-values with the default pvalue cutoff of 0.05? To do the multiple testing correction correctly, could I set
--pval-cutoff 1
and then filter the output by adjusted_pval < 0.05 manually?Besides, I noticed that there are two parameters on calculating combined p-values:
What's the recommended way to set the two parameters?
Thanks in advance.