-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
76 lines (63 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
conda {
enabled = true
useMamba = true
createTimeout = "59 min"
cacheDir = "conda_envs/conda"
}
// Define executors options
executor {
$slurm {
// total number of jobs that can be submitted at the same time
queueSize = 20
}
$local {
cpus = 4
queueSize = 1
}
}
profiles {
standard {
process.executor = 'local'
process.cpus = 4
}
cluster {
process {
executor = 'slurm'
withLabel: 'q1d' {
time = '23:59:00'
cpus = 8
memory = '16G'
clusterOptions = '--qos=1day'
}
withLabel: 'q6h' {
time = '06:00:00'
cpus = 8
memory = '16G'
clusterOptions = '--qos=6hours'
}
withLabel: 'q6h_1core' {
time = '06:00:00'
cpus = 1
memory = '32G'
clusterOptions = '--qos=6hours'
}
withLabel: 'q30m' {
time = '00:30:00'
cpus = 8
memory = '16G'
clusterOptions = '--qos=30min'
}
withLabel: 'q30m_1core' {
time = '00:30:00'
cpus = 1
memory = '16G'
clusterOptions = '--qos=30min'
}
}
}
}
// generate report of the run
report {
enabled = true
file = 'reports/report.html'
}