Hello,
ASpli's checks on Linux (both x86_64 and aarch64) fail with:
Error: processing vignette 'ASpli.Rnw' failed with diagnostics:
chunk 5 (label = quickStart3)
Error in fitFDistRobustly(var, df1 = df, covariate = covariate, winsor.tail.p = winsor.tail.p) :
statmod package required but is not installed
I checked on kunpeng2 (Linux aarch64) and the package is actually installed:
> BiocManager::install("statmod")
Bioconductor version 3.18 (BiocManager 1.30.21.1), R 4.3.1 (2023-06-16)
Warning message:
package(s) not installed when version(s) same as or greater than current; use
`force = TRUE` to re-install: 'statmod'
Could it be that the package needs to depend on statmod
?
The following change fixes the problem:
diff --git a/DESCRIPTION b/DESCRIPTION
index ffa93f0..832ae5d 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -15,5 +15,5 @@ Imports: GenomicRanges, GenomicFeatures, BiocGenerics,
pbmcapply
Description: Integrative pipeline for the analysis of alternative
splicing using RNAseq.
-Suggests:
+Suggests: statmod
Maintainer: Estefania Mancini <emancini@leloir.org.ar>
Regards, Martin
Yes that is correct. We have reached out to the maintainer of ASpli as well and they have yet to be responsive. They need to add statmod to the DESCRIPTION as a 'Suggest' dependency as you have shown.
If anyone knows a new email for the maintainer, the one that is in the DESCRIPTION seems invalid and bouncing for the core team trying to reach out -- the package is at risk for deprecation if these are not fixed.