Differential Expression Analysis with monocle and batch effect correction
1
1
Entering edit mode
5.9 years ago

Hi,

I would like to run differential expression analysis on my single-cell data. My data contains of 5 groups which sequenced in 3 batches. Each batch contains all of the groups. Before the differential expression analysis with monocle (I should run it with monocle) I have tried to eliminate batch effect from the data. I used Seurat's ScaleData function (vars.to.regress argument) to regress out the batch effect. However, the output of this function is in scale format which contains negative values in it.

Can I use scale values in differential expression analysis, specifically monocle?

I also tried limma's removeBatchEffect function, which also gives negative values. What is the best way to regress out the batch effect before the monocle differential expression?

single-cell RNA-Seq batch-effect • 4.5k views
ADD COMMENT
1
Entering edit mode
5.9 years ago

I do not believe negative values will help differential expression analysis in any way. Monocle actually provides functionality for dealing with things like batch. In many of the functions, there is a parameter called residualModelFormulaStr, which allow you to list any covariates for which the statistical modelling should be adjusted.

residualModelFormulaStr

A model formula string specify effects you want to exclude when testing for cell type dependent expression

So, for example, for a differential expression analysis, use:

differentialGeneTest(cds, fullModelFormulaStr = " ~ condition + batch",
reducedModelFormulaStr = " ~ batch", relative_expr=TRUE, cores=4)

Take a look at the Manual and Tutorial.

Kevin

ADD COMMENT
0
Entering edit mode

Thank you Kevin. I will try it.

ADD REPLY
0
Entering edit mode

I believe it should be

differentialGeneTest(cds, fullModelFormulaStr = " ~ condition + Batch", reducedModelFormulaStr = " ~ Batch", relative_expr=TRUE, cores=4)

according to here: Multi-Factorial Differential Expression Analysis

ADD REPLY
0
Entering edit mode

Thank you - I have edited the answer.

ADD REPLY

Login before adding your answer.

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