Custom post-normalization counts from DESeq2
1
0
Entering edit mode
sum732 • 0
@sum732-17882
Last seen 4.7 years ago

Hello,

I will refer to two posts (links below), whereby similar question had been asked in the past: "How to extract normalized counts with covariates in the design" and there was no direct way to get the desired output.

https://support.bioconductor.org/p/69992/, https://support.bioconductor.org/p/68123/

Later on it was suggested to use removeBatch (https://support.bioconductor.org/p/62954/)

I have used SVA to account for not only batch affects but also other possible hidden covariates. In the current manual: https://bioconductor.org/packages/release/bioc/manuals/DESeq2/man/DESeq2.pdf

plotCount functions has parameter "returnData". Is this the correct parameter to be used to extract the "custom post-normalization counts" and save to a file?

Thanks

DEG deseq2 Covariate • 1.1k views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 2 hours ago
United States

In DESeq2, normalized counts control for sequencing depth, or calculated biases if you use tximport. We don't have a method for producing normalized counts that removes things like SVA or RUV factors.

If this is for visualization purposes, I would recommend the approach in the vignette, of computing the vst and then using removeBatchEffect to remove any unwanted variation, such as batch or SVs.

ADD COMMENT
0
Entering edit mode

Hi Michael,

Thank you replying.

I think I was not clear in my question above. I "do not" want to remove any thing.

once I have added the SV: design(ddsMat_MouseAgesmartsva) <- ~ SV1+SV2+SV3+SV4 + Age and carried on with downstream steps to perform DGE. Is there a way to extract the "normalized counts" for the genes that are now normalized with sizeFactor and SVs?

Is "returnData" correct parameter in the plotCount functions to extract these "custom normalized counts"?

ADD REPLY
0
Entering edit mode

The normalized counts do not remove anything based on the design. So SV variation is not removed.

ADD REPLY
0
Entering edit mode

Hi Micahel,

I ran DESeq2 with two design models: design(ddsMat_MouseAgesmartsva) <- ~ SV1+SV2+SV3+SV4 + Age and design(ddsMat_MouseAgesmartsva) <- ~ Batch + Age

Next used following commands to extract the values. However, the values are exactly the same. I thought that with SVs added the normalized will be different, but that is not the case.

normalizedCnts_DESeq2_withBatch<-counts(ddsMat_MouseAge, normalized=TRUE) normalizedCnts_DESeq2_withCovariates<-counts(ddsMat_MouseAgesmartsva, normalized=TRUE)

May be I am missing something here.

ADD REPLY
0
Entering edit mode

Why would you think that? I’ve said the exact opposite twice now in this thread.

ADD REPLY
0
Entering edit mode

Is there a way to extract normalized counts+regressed SVs (from RUV/SVA). Aim is to use these "normalized" values for clustering such as by TMixClust/degReport.

ADD REPLY
0
Entering edit mode

I don't really have a way to do this in DESeq2.

I tend to work with VST counts, which are log2 scale. And these you can easily remove SVs from using the code that we have in the vignette.

ADD REPLY
0
Entering edit mode

Thanks Michael. This helps.

ADD REPLY

Login before adding your answer.

Traffic: 711 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