You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run YAMP on a cluster of type SGE. It put these information in "process" part of the nextflow.config file :
executor = 'sge'
queue = 'batch,batchbm'
I get the following error :
`Error executing process > 'qualityAssessment (1)'
Caused by:
Failed to submit process to grid scheduler for execution
Command executed:
qsub -terse .command.run
Command exit status:
1
Command output:
Unable to run job: "job" denied: use parallel environments instead of requesting slots expl
Exiting.`
I think the problem comes from the fact that in a normal use, I need to specify the queue on this cluster as follow : qsub -q queue myscript
How can I solve this problem ?
Thanks,
Corentin
The text was updated successfully, but these errors were encountered:
my guess is that you need to specify the parallel environment (e.g., mpi) within the nextflow.config file, using the penv directive.
You could also compare one of your SGE scripts with that generated by nextflow (.command.run in the working directory that failed), and see if you can spot any other issues.
Hello,
I am trying to run YAMP on a cluster of type SGE. It put these information in "process" part of the nextflow.config file :
executor = 'sge'
queue = 'batch,batchbm'
I get the following error :
I think the problem comes from the fact that in a normal use, I need to specify the queue on this cluster as follow :
qsub -q queue myscript
How can I solve this problem ?
Thanks,
Corentin
The text was updated successfully, but these errors were encountered: