Dear creators/maintainers of the scater package
First of all, thanks for slim and intuitive package for the scRNAseq data
It is my first go with scRNAseq data and I try to follow scater vignettes
Looks like there might be a little bug in plotQC()
It happened that my SingleCellExperiment object has only 'logcounts' data (no original 'counts)
when calling first:
sce <- calculateQCMetrics(sce, exprs_values = "logcounts")
and then
plotQC(sce, type = "highest-expression", exprs_values = "logcounts")
an error appears:
Error in .qc_hunter(object, "total_features_by_counts", mode = "column") :
failed to find 'total_features_by_counts' in column metadata
Looks like that despite "total_features_by_logcounts" plotQC still requires 'total_features_by_counts'
Fix needed
Thanks