-
Notifications
You must be signed in to change notification settings - Fork 15
/
nextflow.config
66 lines (51 loc) · 1.07 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
// This works to clean things up but I can't see
// how to globally force copy or hardlinks for
// published results so we don't just end up with
// a bunch of broken symlinks
// cleanup.enabled = true
process {
executor = 'slurm'
memory = 5.GB
cpus = 1
withLabel: bigMem {
memory = 20.GB
}
withLabel: mem40G {
memory = 40.GB
}
withLabel: hugeMem{
memory = 80.GB
}
// We've halved our cpu allocations as slurm
// assigns tasks (threads) not physical cpus
// so we over-commit if we use the full number
// of cpus
withLabel: multiCore {
cpus = 8
}
withLabel: quadCore{
cpus = 4
}
}
notification {
enabled = true
to = "${USER}@babraham.ac.uk"
}
timeline {
enabled = true
timeline.overwrite = true
file = "execution_timeline.html"
}
report {
enabled = true
report.overwrite = true
file = "execution_report.html"
}
//trace {
// enabled = true
// file = "execution_trace.txt"
//}
// dag {
// enabled = true
// file = "pipeline_dag.svg"
// }