Closed DarioS closed 7 years ago
Hi Dario, @DarioS
It appears to me that this is a bug with dispatch on ...
which was fixed by Hervé some time ago.
But I can't reproduce your error. It should go away when BiocInstaller::biocValid() == TRUE
after updating your packages.
Note. The way to subset by samples is documented as follows:
anMSE[, list(mRNA = c("A", "B"), protein = c("A", "B"))]
## OR
subsetByColumns(anMSE, list(mRNA = c("A", "B"), protein = c("A", "B")))
Regards, Marcel
If
Biobase
is loaded in the same R session asMultiAssayExperiment
then the example below produces an error.The error message is
Error in lapply(as.list(X), FUN = FUN, ...) : argument is missing, with no default
. One package is masking another's method, it seems. This makes it hard to convert a Bioconductor package fromExpressionSet
toMultiAssayExperiment
because both need to be loaded during development and testing.