Open jingxinfu opened 4 years ago
Hi @jingxinfu! thanks for the comment! Two components here are
I just want to add that fisher method https://docs.scipy.org/doc/scipy-0.16.0/reference/generated/scipy.stats.combine_pvalues.html is not very suitable here: if you want to have a single pvalue per gene, it s much cleaner to write up a GLM that covers all of these tests and tests all of these coefficients in a single test! we could still include it as an indication for where stuff is going on here though.
Hi, I was trying to find DEGs between two conditions while controlling the sample-driven effect. Following the tutorial, I used this script to conduct my analysis.
Next, I was checking how
diffxpy
combine p-values from different groups and found this:Would you mind kindly telling me why to choose the minimum p value across groups? I was wondering that it might increase the amount of significant genes in this way. Would other methods, like
fisher method
https://docs.scipy.org/doc/scipy-0.16.0/reference/generated/scipy.stats.combine_pvalues.html, be better?