Entering edit mode
10 months ago
nermze
•
0
Hello
I'm trying to get nf-core/ampliseq running on Win11 with wsl. The pipeline starts normally and does multiqc step, but then stops with an error. The same error pops up in both Singularity and Docker.
ERROR-[nf-core/ampliseq] Pipeline completed with errors-
ERROR ~ Error executing process > 'NFCORE_AMPLISEQ:AMPLISEQ:SUMMARY_REPORT (1)'
Caused by:
Process `NFCORE_AMPLISEQ:AMPLISEQ:SUMMARY_REPORT (1)` terminated with an error exit status (1)
Command executed:
#!/usr/bin/env Rscript
library(rmarkdown)
Any ideas what is causing this, and how i can fix it?
Could you try to run R in WSL and load the rmarkdown library and see what happens?
or run
echo "library(rmarkdown)" | Rscript -
You might get:
Then also try the same in singularity/docker when running in shell mode (e.g.
singularity shell ...
instead of singularity run). Possibly the creators of the image or work-flow forgot to install the R-package during build script or via conda. If you know where the source of the NF script is located, you can modify it.Hi and thank you for the reply.
I have run the code as you suggested, no errors in the output. The same error with rmarkdown appears irregardless of docker or singularity.
Can you provide the exact invocation for running the workflow in singularity, please?
This is the code i run;
Do you need to run it as
sudo
? That's generally extremely bad practice which could destroy your system :-)In addition, this might also be the reason for the error. Even if you are working under WSL, never run user processes as a privileged user.
Could you post the .nextflow.log as well as the output of lsmem? It could be a memory problem, since WSL might not be able to access the whole memory.