Skip to content
Snippets Groups Projects
Verified Commit eed28334 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

nextflow.config: simplify errorStrategy for computing grid

parent 04fa21c5
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ profiles {
singularity.cacheDir = "$baseDir/.singularity_psmn/"
singularity.runOptions = "--bind /Xnfs,/scratch"
process{
errorStrategy { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
errorStrategy 'retry'
maxRetries 3
withLabel: big_mem_mono_cpus {
executor = "sge"
......@@ -74,7 +74,7 @@ profiles {
singularity.cacheDir = "$baseDir/.singularity_in2p3/"
singularity.runOptions = "--bind /pbs,/sps,/scratch"
process{
errorStrategy { sleep(Math.pow(2, task.attempt) * 200 as long); return 'retry' }
errorStrategy 'retry'
maxRetries 3
withLabel: big_mem_mono_cpus {
scratch = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment