Replies: 5 comments 5 replies
-
The error about the out/err files is usually a red herring, i.e. it's usually just a consequence of some upstream error. In this case, it looks like the task failed because it returned exit code 1. I would look into what that is happening. |
Beta Was this translation helpful? Give feedback.
-
I have set Additionally, I tried to run |
Beta Was this translation helpful? Give feedback.
-
Sorry for the misleading. I have updated Nextflow (23.04) to the latest version and the specified java version (Temurin 17) (after I post the first logs in this question). I may found the cause but still do not know why. The error is supposed to be caused by the activation of When the process is defined as below, it gets wrong:
When the process is defined as below, it gets right:
I noticed in I guess it may be caused by :
|
Beta Was this translation helpful? Give feedback.
-
Thanks!
In
In
I would try to update to the edge version later. |
Beta Was this translation helpful? Give feedback.
-
Hi, I've encountered the same problem and @Tong-Chen 's conda hypothesis made me look deeper into my stack. I am using nextflow installed via a pixi environment. I was running my pipeline inside a |
Beta Was this translation helpful? Give feedback.
-
I have a workflow
RNAseq_salmon.nf
, which could be run successfully inbash terminal
manually in/path
or through python modulesubprocess
(based onPopen(RNAseq_salmon.nf, cwd="/path")
). However, when running this process usingCelery
(which also usesPopen
to run(RNAseq_salmon.nf
internally), it fails.The most explicit error is:
When I move to the directory
/fidRNAseq_analysis_flow__salmon_50002023_05_26_19_13_31_621799/work/b3/27c8e1eef9a76d2ba053753bb88d0a/
and runbash .command.run
, it finished successfully.Normally when I met
java.nio.file.NoSuchFileException
, it may be caused by the parent directory being uncreated. I wonder if there is one possibility that when dumping errors to.command.out
, the dirwork/b3/27c8e1eef9a76d2ba053753bb88d0a
is missing. But when I check the errors, these directories are ready. I just do not know why.Also, it is weird, since
.command.run
is generated, which means the directorywork/b3/27c8e1eef9a76d2ba053753bb88d0a
is created.I have tried to change workDir to another directory and searched using Google and got no luck.
Could anyone please give some suggestions?
Thanks!
Chen Tong
Full logs below:
Beta Was this translation helpful? Give feedback.
All reactions