Ah right! I knew I was overlooking something obvious. Thanks!
• 0 views
•
link
This is the summary from the CellRanger run showing ~150,000 reads per cell.
But, when I read the results into R, I get only ~5000 reads per cell. This is before any pre-filtering in Seurat.
x <- Seurat::Read10X_h5("data/PBMC_1_3_1/count/sample_feature_bc_matrix.h5")$`Gene Expression`
hist(colSums(x))
median(colSums(x))
[1] 5050.5
This is a huge difference and I wonder if I am making a mistake somewhere.
Your Seurat histogram is actually of unique UMIs per cell, not raw read counts per cell. If you look at the cell ranger results under "Median UMI counts per cell" it matches (almost exactly) to your results from Seurat.
Log in to answer this question.