-
Notifications
You must be signed in to change notification settings - Fork 66
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
What is the meaning of zscore in the results of differentially expressed analysis? #79
Comments
lb - lower bound of the 95% confidence interval for the log2 fold change
mle - maximum likelihood estimate of the fold change (log2 scale)
ub - upper bound of the 95% confidence interval
Z - raw Z score (signed P value, converted to Z score)
cZ - Z score, corrected for the multiple hypothesis testing
Best,
-peter.
… On Aug 19, 2019, at 23:08, Hanwen_Yu ***@***.***> wrote:
Hi, I want to cite the package SCDE in my paper. But I do not know how to discribe the rationale of this packages. Most importantly, it is difficlult for me to understand the parameters, including lb, mle, ub, ce, Z and cZ. I have attempted to search the relevant information in your paper publised on journal-Nature Method(Bayesian approach to single-cell differential expression analysis). But, my effort ended in failure. Could you explain the meaning behind these parameters or provide me some learning materials to read. Thank you~~~
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@pkharchenko |
You can use them much in the same way. The mle provides the log2 fold change estimate. cZ encodes the same information as Q value, but on a different scale (i.e. pnorm(cZ,lower.tail=F) will give you the corrected p value of gene being up-regulated, pnorm(cZ, lower.tail=T) of the gene being down-regulated). Z scores are also easy to work with directly … a Z score of 3 corresponds to the P value around 1e-3, and Z score of 2 corresponds to P value around 025. The sign tells you wither the gene is up (positive) or down (negative).
Also, ‘ce’ column contains the conservative log2 fold change estimate (i.e. the 95% CI bound that’s closest to 0, or 0 if the CI intersects 0), which makes it easy to select genes that are differentially expressed beyond a certain fold change threshold with 95% confidence.
… On Aug 20, 2019, at 03:53, Hanwen_Yu ***@***.***> wrote:
@pkharchenko
Hi, peter, thank you for your reply. But I still cannot understand these parameters. How can I differentiate the up- or down-regulated genes from these parameters. In DESeq2, the analytical results will show the log2foldofchange and the qvalue that can be used to choose the targeted gene list, such as differentially up-regulated genes by setting up threshold log2foldofchange > 1 & qvalue < 0.05. In results of scde, I do not know how to choose the genes I want. Could you teach me how to use these parameters to achieve this goal? Thank you~~~
Best wish,
Hanwen
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@pkharchenko |
Hi, I want to cite the package SCDE in my paper. But I do not know how to discribe the rationale of this packages. Most importantly, it is difficlult for me to understand the parameters, including lb, mle, ub, ce, Z and cZ. I have attempted to search the relevant information in your paper publised on journal-Nature Method(Bayesian approach to single-cell differential expression analysis). But, my effort ended in failure. Could you explain the meaning behind these parameters or provide me some learning materials to read. Thank you~~~
The text was updated successfully, but these errors were encountered: