Is there a way to calculate standard deviation, standard error, or 95% confidence intervals for a few genes (~10) from RNAseq data? I am comparing RNAseq fold change values with qPCR ddCts and need to show some measure of uncertainty for RNAseq FC values. Need to add error bars to this graph I was hoping to be able to get some measure of uncertainty from edgeR (that I used to get DE genes) but as far as I found edgeR uses dispersion which is not what I need.
Thank you,
I am not an expert on this, but AFAIK it is is not possible to obtain errors or confidence intervals. See this thread. https://support.bioconductor.org/p/61640/
This does not seem to be related to any Bioconductor package (?), even though you have tagged EdgeR. It seems that you may want
geom_errorbar()
from ggplot2, but, again, this is not related specifically to any Bioconductor package.Sorry for not being clear. I just edited the question. I was hoping to be able to get it out of edgeR that I used to get DE genes. My question is not how to plot, but is what data to use to calculate errors.
After looking more carefully, I realized that ultimately I want to calculate the correlation between qPCR and RNAseq data. For this, I do NOT need error bars as they are not relevant here in calculating the correlation. Am I correct?