-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
executable file
·55 lines (46 loc) · 1.32 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* --------------------------------------------------
* Nextflow config file for the RNA-Seq pipeline
* --------------------------------------------------
*/
executor {
name = 'slurm'
perCpuMemAllocation = true
exitReadTimeout = '5 days'
}
singularity {
enabled = true
autoMounts = true
runOptions = '-B /cluster'
}
process {
/* ========================================================================================
DEFAULT PARAMETERS
======================================================================================== */
beforeScript = 'module load eth_proxy'
scratch = 'true'
time = 4.hour
memory = 5.GB
cpus = 1
errorStrategy = { sleep(Math.pow(2, task.attempt) * 30 as long); return 'retry' }
maxRetries = 3
array = 50
}
/* ========================================================================================
PIPELINE INFO
======================================================================================== */
timeline {
overwrite = true
enabled = true
file = "pipeline_info/execution_timeline.html"
}
report {
overwrite = true
enabled = true
file = "pipeline_info/execution_report.html"
}
trace {
overwrite = true
enabled = true
file = "pipeline_info/execution_trace.txt"
}