Version 0.3
AcidPlyr 0.3.0 (2022-04-29)
Major changes:
- Updated R dependency to 4.2.
- Reduced the number of strong dependencies in the package, migrating AcidCLI and pipette to
Suggestsinstead ofImports.
AcidPlyr 0.3.2 (2022-09-16)
New functions:
-
cast: Added support for castingDataFrameobjects in long format back to wide format. Internally this callstidyr::pivot_widercurrently. The function is intentionally designed to be simple and provide easy interconversion support formeltreturn in long format back to wide format. For more advanced uses, callpivot_widerdirectly instead.
AcidPlyr 0.3.3 (2023-02-07)
Major changes:
-
rbindToDataFrame: Reworked internal code. For very large nested lists, consider using data.tablerbindlistinstead, which is very performant.
Minor changes:
- Hardened internal assert checks for join functions, to protect against unwanted duplicate or
NAvalues defined in"by"argument. - Now using
requireNamespacesinternally (from goalie) for optional package checks.
AcidPlyr 0.3.4 (2023-02-08)
Minor changes:
-
rbindToDataFrame: Simplified internal logic to speed up function quite a bit. Now supports processing of"cellosaurus.txt"file.
AcidPlyr 0.3.5 (2023-02-09)
Major changes:
- Removed
mapToDataFrame, in favor of only supportingrbindToDataFramefunction. This helps lighten the package a bit by removing suggested purrr and dplyr packages.
AcidPlyr 0.3.7 (2023-02-23)
Minor changes:
-
rbindToDataFrame: Simplified internal construction ofDataFramefromlist, usingnewinstead ofmatrixcoercion internally. This same approach is now used foras.DataFramelistmethod in pipette. -
leftJoinand other join functions: Improved error message handling whenxandycontain overlapping columns not defined inbyargument.
AcidPlyr 0.3.8 (2023-04-25)
Minor changes:
- No longer importing
rowSumsinto NAMESPACE, which has been removed from BiocGenerics in Bioconductor 3.17 update.