Version 0.2
AcidBase 0.2.1 (2020-10-06)
New functions:
- Added
forceDetach, previously used internally inside basejump. - Updated documentation to inherit from AcidRoxygen instead of acidroxygen.
AcidBase 0.2.2 (2020-10-07)
New functions:
- Migrated
headtailatomic, matrix, and data.frame methods here from basejump. The methods that work on S4 objects, such as DataFrame, Matrix, GRanges, and SummarizedExperiment are still defined in basejump. -
showSlotInfo: Migrated from basejump, so we can use in AcidGenomes.
AcidBase 0.2.3 (2020-10-07)
- Fixed reference to AcidPlots package, renamed from previous “acidplots”.
AcidBase 0.2.4 (2020-11-24)
New functions:
-
sem: Added support for standard error of the mean calculation.
AcidBase 0.2.5 (2020-12-10)
New functions:
- Added
download, which acts as a hardened wrapper forutils::download.file. Annoying,download.filereturns status codes but does not intentionally error on any unsuccessful downloads. Our wrapper ensures that R always errors on any file download issue. It also sets a longer timeout internally, to avoid any potential issues with thetimeoutoption being defined inRprofile.
Bug fixes
-
compressanddecompresswere found to potentially generate integer overflow warnings on very large files, due to R using 32-bit integers. This issue has been resolving by ensuring the internalnbytescounter is set asnumericinstead. See related Stack Overflow post for details on integer overflows in R. -
sem: RequiresAsIsclass support, to work inside dplyr summarize calls. - Now need to import BiocGenerics, for proper import of
AsIsS4 class, which is anoldClassof the S3 class.