Closed combiz closed 4 years ago
Appreciate the heads-up. We'll make the fixes.
Done in 94dc2619f289e4b3438f880ac874d7c290e3ac52. For now I opted to just prefix the reshape2
namespace. tidyr::pivot_longer
won't work out of the box because it can't handle multidimensional arrays. It's not hard to rework the methods to use pivot_longer
or even base
methods, but MAST
still adds a method to the reshape2::melt
generic for SingleCellAssay
, so it doesn't yet make sense to completely detach it until that is renamed.
There are a series of warnings resulting from
melt(llrt)
,melt(lfc)
, andmelt(coefAndCI)
which are found in ZlmFit.R and ZlmFit-logFC.R . Can be resolved withreshape2::
prefixes or perhaps reworked with the newerpivot_longer
? Thanks