Thanks very much for your reply!
I don't know if I properly understood your answer. I can understand that after subsetting I should scale again. But why QC filtering again?
At least the way how I am working is that my complete seu is QC filtered for all the cells and/or a particular cell.
That is, if I stablish a % mito cutoff for all cells and then a particular % mito cutoff for a particular subset of cells, I end generating a merged seu objects with those 2 filterings (the original % cutoff for all cells without that particular subset of cells + that particular subset of cells with the new cutoff)
seu_group1 <- subset(seu, idents="Group1")
seu_group1_filt <- subset(seu_group1, subset = percent.mito < 10)
#keep all cells except group1Cells
CellIdents <- levels(Idents(seu))[!grepl("Group1", levels(Idents(seu)))]
seu_filt <- subset(seu, subset = percent.mito < 40, idents = CellIdents)
#merge and generate my final filtered dataset
seu_ALL_filtered <- merge(seu_group1_filt, seu_filt)
Therefore... why should I have my final complete/final seu not QC filtered? Or is it because you do not consider a final seu object as "final" (QC filtered)? *I put an example with % mitochondrias, but it can be droplets or other sources of noise.
Thanks again for your help :)