Removing Batch effect on the raw counts or normalised counts
1
0
Entering edit mode
@chudarchudar-9587
Last seen 4.7 years ago

Dear All,

I am a newbie to RNAseq data analysis. Recently I have RNA seq data which include 4 samples and each of the sample include triplicates. I used DESeq2 pipeline for analysing the data and in the PCA plot i could see that all rep1s from all 4 samples are clustered together and rep2 from all samples are clustered together and rep3 from all samples are clustered together(rather clustering to their respective samples). My friend who prepared the samples told that he processed rep1 samples, rep2 samples and rep3 samples in consecutive days.

I used removeBatcheffect using the following code on the vsd transformed data

   vsd <- vst(dds)
   plotPCA(vsd, "batch")
   assay(vsd) <- limma::removeBatchEffect(assay(vsd), vsd$batch)
   plotPCA(vsd, "batch")

and the PCA looked far better where the replicates clustered according to their respective samples. But is it possible to remove the batch effect from raw counts or normalised counts in DEseq2 or any other package. Any guidance would be really useful. Thanks in advance.

DEseq2 batch effect RNAseq • 1.9k views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 7 minutes ago
United States

For the purpose of differential expression, we do not remove the batch effect, but instead include the batch variable in the design, e.g. ~batch + condition.

(This example is given in the first code chunk of the DESeq2 vignette)

ADD COMMENT
0
Entering edit mode

Hi Michael,

Thanks for your reply. I did include ~batch into my design to regress the batch effect. But I am wondering whether is it possible to have batch effect completely removed from raw counts or normalised counts. This is because I want to use batch effect removed raw or batch effect normalised counts in another package which cannot account for the batch effect. Kindly guide me.

ADD REPLY
0
Entering edit mode

"whether is it possible to have batch effect completely removed from raw counts or normalised counts"

No. DESeq2 doesn't do this.

ADD REPLY
0
Entering edit mode

Thanks for your reply. But is there any other tool apart from DESeq2 which can remove the batch effect from raw or normalised counts ? Kindly guide me

ADD REPLY
0
Entering edit mode

I've given you all the information I have. I provide support for the DESeq2 package only on this site and I don't have any further guidance for you.

ADD REPLY
0
Entering edit mode

Have you tried sva?

ADD REPLY

Login before adding your answer.

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