-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow logFC shrinkage in DESeq #224
Comments
Given that, maybe a generic Also, looks like |
@mikelove any feedback/idea on this? |
I can help with this. I would argue for practical reasons as well as semantic reasons, it may best be implemented as separate function from Motivation: Neither the basic (MLE) LFC nor t-statistic (equivalently p-value) are very good at ranking genes by effect size, which we described in Zhu et al 2019 (with the exception of after having filtered to an FDR bounded set). But for ranking the entire gene list, apart from resorting to null hypothesis testing, you need a good effect size estimate for plotting or some downstream applications. We have two main implementations within Practically, this would mean passing the One more detail is that in our implementation, ashr can operate on any previously calculated LFC which would be present in the columns of the object after |
Another good effect size ranking method that could be included is: http://bioconductor.org/packages/release/bioc/html/topconfects.html |
For gene ranking (for GSEA, for example) and visualizations (on volcano plots, for example), DESeq author Michael Love suggests shrinking of the effect sizes (log-fold changes) with the
lfcShrink
function applied to a DDS object created withDESeq()
Shrinkage was once the default for
DESeq()
; however since version1.16
it's been a separate function in anticipation of the addition of other (better?) effect-size estimators to the DESeq workflow. In addition, isolation of the function allows to accommodate other types of analyses which are more sensitive to shrinking LFCs than bulk RNA-Seq.Some references below with Love's recommendations:
https://support.bioconductor.org/p/77461/
https://support.bioconductor.org/p/95695/
The text was updated successfully, but these errors were encountered: