I am often looking at gene expression levels per sample and cell type. I am wondering what is actually the 'most appropriate' method. It is not for DGE analysis, but to visualise a certain gene of interest across conditions and find correlated genes.
I am used to using the Seurat R package for analysing scRNA-seq data. First, there was the function AverageExpression and I use the following formula based on this function to calculate the mean expression of normalised counts:
log1p(mean(expm1(expr)))
However, now there is the function AggregateExpression (sum counts) and based on my understanding this is the suggested method for DGE analysis, but what about other analyses (e.g., correlation analyses)?
I used AggregateExpression in my work.