Thanks, Jared,
I don't know how I missed this while reading. Probably I checked the major changes only for CellRanger v2.2.0 and v6.1.0.
Thank you for the information. So do you have any suggestions for removing the low RNA content cells from the downstream?
BTW, I am using Seurat for the downstream analysis. Currently, I am using this code for the initial QC (following this tutorial).
filtered_seurat <- subset(x = merged_seurat,
subset= (nUMI >= 500) & # number of UMI per cell
(nGene >= 500) & # minimum number of genes per cell
(nGene <= 4000) & # maximum number of genes per cell
(log10GenesPerUMI > 0.85) & # complexity ratio:
(mitoRatio < 0.05) &
(doublet_status == FALSE))
Do you have any suggestions on this to remove cells with low RNA content?
Thanks and Regards,
Nitin N.
You can go through the release notes at https://support.10xgenomics.com/single-cell-gene-expression/software/pipelines/latest/release-notes (see red box at lower-right corner to switch versions) to see what changed in the individual versions.