Dear all,
How can I filter the counts with low count in Deseq2? Any suggestion on how to do?
dds<-DESEq(dt) count<-counts(dds,normalize=TRUE) filter<-rowsum(count)> 10
thanks so much!!
Dear all,
How can I filter the counts with low count in Deseq2? Any suggestion on how to do?
dds<-DESEq(dt) count<-counts(dds,normalize=TRUE) filter<-rowsum(count)> 10
thanks so much!!
hi,
If you want to filter, you can do so before running DESeq:
dds <- estimateSizeFactors(dds) idx <- rowSums( counts(dds, normalized=TRUE) >= 5 ) >= 3
This would say, e.g. filter out genes where there are less than 3 samples with normalized counts greater than or equal to 5.
then:
dds <- dds[idx,] dds <- DESeq(dds)
However, you typically don't need to pre-filter because independent filtering occurs within results() to save you from multiple test correction on genes with no power (see ?results and the vignette section about independent filtering, or the paper). The main reason to pre-filter would be to increase speed. Designs with many samples and many interaction terms can slow down on genes which have very few reads.
I have a similar question: In an experiment with 5 strains in triplicates, I have a gene with the following normalized counts:
Replicates
Strain-1: 0,0,0
Strain-2: 0,0,0
Strain-3: 1.6,1.3,0
Strain-4: 0,0, 2.6
Strain-5: 105,102,101
After running DESeq2, this gene is flagged and given "NA" for pvalue and adjusted.value, which makes sense. However, when I rerun the analysis with only first two replicates per strain (highlighted bold) and compare strain 5 and 4, this gene comes up as differentially expressed: baseMean=9.5 and log2FoldChange=3.3. I am wondering why is this gene not being flagged? and more importantly, how is deseq2 able to compute a fold change when the normalized counts for this gene in strain-4 are zeros.
Appreciate your help.
Priyanka Kachroo
The question about calculating fold changes when strain 4 has zeros has been answered on the site a few times but it's difficult to find the post. The short answer is that the DESeq2 statistical model (see paper) uses a prior distribution on the fold changes, and returns posterior estimates. So the posterior is a balance of the likelihood (which would give an infinite fold change) and the prior which is calculated based on the range of fold changes from the most DE genes.
Regarding the NA's:
If you read in the help page ?results
about NA values in the pvalue column:
By default, results assigns a p-value of NA to genes containing count outliers, as identified using Cook’s distance. See the cooksCutoff argument for control of this behavior.
Then if you read more:
cooksCutoff - theshold on Cook’s distance, such that if one or more samples for a row have a distance higher, the p-value for the row is set to NA. The default cutoff is the .99 quantile of the F(p, m-p) distribution, where p is the number of coefficients being fitted and m is the number of samples. Set to Inf or FALSE to disable the resetting of p-values to NA. Note: this test excludes the Cook’s distance of samples belonging to experimental groups with only 2 samples.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Does it mean that DESeq2 has no problem estimating dispersions for low expressed features, as opposed to voom?
Sorry, right now I faced a point, please help me to be cleared if I am wrong. I noticed that in differential expression analysis by DESeq2, the distribution of read counts of differentially expressed genes is in favour of more highly expressed genes. I mean, likely DESeq2 has a threshold for ignoring too low expressed genes before differential expression analysis. Actually I was expected the genes with too low read counts or zeros are the reason of differential expression but box plot shows that the DE genes are among the genes with higher reads counts.
More highly expressed genes have higher power for detecting DE.
And yes we do have an internal filter that optimizes this.
Like all important aspects of the method it is discussed in the paper and in the vignette.
Thank you, you alright
Sorry, by using these lines
will I prevent internal filtering in DESeq2 to remove any genes in differential expression? I am right??
Yes this will turn off independent filtering (on the mean of counts), as well as outlier replacement and outlier-based gene filtering.
Hi Michael, thanks for your posts - they are really helpful! I was wondering though, isn't there any issue with using `estimateSizeFactors(dds)` twice? Because the DESeq function is going to do this again, no?
DESeq() does not re-estimate size factors. It will print this message also when you run it.
Hi Michael, would like to have an update on your explanation on this strip of code:
You said that this means that it would filter out genes where there are less than 3 samples with normalized counts greater than or equal to 5. But in turn, isn't it the opposite since we have the ">=" symbol .So it filters out genes that are more than 3 samples ,right?
Hope to hear from you regarding this.
Better to call it
keep
:This requires genes to have Y or more samples with counts of X or more. It therefore filters out genes that have less than Y samples with counts of X or more.