DEXSeq: minCount in estimateDispersions()
1
0
Entering edit mode
liaojinyue • 0
@liaojinyue-7077
Last seen 9.4 years ago
Hong Kong

Hi,

I'm using DEXSeq and would like to do some filtering base on the minimum count number for each exon. With the default parameter, DEXSeq reports many significant events, many of which seem to have lower counts. Post from 1 or 2 years ago by Simon suggested that the minCount parameter in estimateDispersions() should be useful (https://support.bioconductor.org/p/45879/#45885). But I can't find it in current version of DEXSeq.

So what should I do to do the filtering? Thanks.

 

Best,

 

Jason

dexseq • 1.6k views
ADD COMMENT
0
Entering edit mode
Alejandro Reyes ★ 1.9k
@alejandro-reyes-5124
Last seen 5 months ago
Novartis Institutes for BioMedical Rese…
Hi Jason,

This parameter of the estimateDispersions function was deprecated, since now the independent filtering threshold is done automatically as described in the DESeq2 vignette. Note that the most recent versions of DEXSeq are internally using DESeq2.  

Alternatively, you can do some alternative filtering on low counts based on your own criteria and then correcting for multiple testing. For example, 

data("pasillaDEXSeqDataSet", package="pasilla")
dxr <- DEXSeq(dxd)
dxr$pvalue[rowSums( dxr$countData ) < 20] <- NA
dxr$padj <- p.adjust(dxr$pvalue, method="BH")

 

Best regards

Alejandro

 

ADD COMMENT

Login before adding your answer.

Traffic: 856 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6