-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only check for nested matrices in a DF when column is atomic.
This avoids invoking dim() on unknown objects, where anything could happen. In particular, the DataFrameList will raise deprecation warnings as dim() was replaced by dims() in the latest release. Also migrated tests for correct saving of nested arrays inside DFs from alabaster.matrix; it's more appropriate to test it here.
- Loading branch information
Showing
3 changed files
with
64 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: alabaster.base | ||
Title: Save Bioconductor Objects To File | ||
Version: 1.5.6 | ||
Date: 2024-08-27 | ||
Version: 1.5.7 | ||
Date: 2024-09-10 | ||
Authors@R: person("Aaron", "Lun", role=c("aut", "cre"), email="[email protected]") | ||
License: MIT + file LICENSE | ||
Description: | ||
|
@@ -24,7 +24,8 @@ Suggests: | |
knitr, | ||
testthat, | ||
digest, | ||
Matrix | ||
Matrix, | ||
alabaster.matrix | ||
LinkingTo: | ||
Rcpp, | ||
Rhdf5lib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters