-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
114 lines (88 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Define executors options
executor {
$slurm {
queueSize = 40
}
$local {
cpus = 4
queueSize = 1
}
}
profiles {
standard {
conda.enabled = true
conda.useMamba = true
process {
executor = 'local'
cpus = 4
conda = 'conda_envs/general_env.yml'
}
}
cluster {
conda.enabled = true
conda.useMamba = true
conda.createTimeout = '50 min'
process {
conda = 'conda_envs/general_env.yml'
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: 'q30m' {
time = '00:30:00'
cpus = 8
memory = '16G'
clusterOptions = '--qos=30min'
}
withLabel: 'q6h_16cores' {
time = '05:58:00'
cpus = 16
memory = '32G'
clusterOptions = '--qos=6hours'
}
withLabel: 'q30m_1core' {
time = '00:30:00'
cpus = 1
memory = '16G'
clusterOptions = '--qos=30min'
}
withLabel: 'q30m_highmem' {
time = '00:30:00'
cpus = 8
memory = '32G'
clusterOptions = '--qos=30min'
}
withLabel: 'q6h_subsample' {
time = '02:00:00'
cpus = 16
memory = '32G'
clusterOptions = '--qos=6hours'
}
withLabel: 'q6h_2h' {
time = '02:00:00'
cpus = 8
memory = '16G'
clusterOptions = '--qos=6hours'
}
withLabel: 'medaka_setup' {
executor = 'local'
conda = 'conda_envs/medaka_env.yml'
}
}
}
}
// generate report of the run
report {
enabled = true
file = 'report.html'
overwrite = true
}