Closed danielcgingerich closed 10 months ago
This is explained in the paper. Briefly, the idea is to put all the cells to same sequencing depth (median) and then ask what would be observed counts (with minimal technical variation or mostly biological variance) given the model captures technical variation.
@saketkc Thank you!
Trying to understand what exactly corrected counts are. I do not see how the corrected counts are different than the raw count matrix. Ive looked at the source code for correct_counts in this repository and identify the source of my misunderstanding. from line 237 in denoise.R
mu + pearson_residual sqrt(variance) = mu + (y - mu) / sqrt(variance) sqrt(variance) = mu + y - mu = y.
Whats the purpose of this?