Closed HenrikBengtsson closed 1 year ago
Thanks Henrik. I'll await how we resolve this in https://github.com/Bioconductor/MatrixGenerics/issues/31 before updating DelayedMatrixStats.
Looks like you need to propagate useNames = useNames
at
Otherwise, user-provided overrides aren't respected when the dispatcher decides it can skip block processing.
@LTLA Won't the user-provided useNames
be passed via ...
?
No, because .smart_seed_dispatcher()
has an explicit useNames
argument, so it gets pulled out of the ...
.
Addressed as part of https://github.com/PeteHaitch/DelayedMatrixStats/pull/96
Hello, matrixStats 1.0.0 is now on CRAN (as 2023-06-02). It comes with the following significant changes:
useNames = TRUE
is the new default for all functions.colQuantiles()
androwQuantiles()
only sets quantile percentage names whenuseNames = TRUE
, to align with how argument names ofstats::quantile()
works in base R. Previously,useNames = FALSE
also had such names attributes.