Hello Seurat team,
I would like to filter out the effects of cell cycle, but I could not find variable to be used with RegressOut. If I understand correctly, instead of genes.regress=NULL, I should provide a list of cell cycle genes, is this correct? Are there any validated lists of cell cycle genes for both mouse and human that can be used with Seurat?
RegressOut(object, latent.vars, genes.regress = NULL, model.use = "linear",
use.umi = F, do.scale = T, do.center = T, scale.max = 10)
Thank you in advance
Alexander
Hi Alexander,
You can check the Macosko et al. 2015 paper for gene sets. To run the regression, you don't set genes.regress to your list of cell cycle genes. You have to essentially calculate a cell cycle score for each cell by either
You would then provide this score in latent.vars to RegressOut.
Most helpful comment
Hi Alexander,
You can check the Macosko et al. 2015 paper for gene sets. To run the regression, you don't set
genes.regressto your list of cell cycle genes. You have to essentially calculate a cell cycle score for each cell by eitherYou would then provide this score in
latent.varsto RegressOut.