forked from s-andrews/nextflow_pipelines
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow.config
62 lines (49 loc) · 966 Bytes
/
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
// 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
}
withLabel: multiCore {
cpus = 8
}
withLabel: quadCore{
cpus = 4
}
}
notification {
enabled = true
to = "${USER}@babraham.ac.uk"
}
timeline {
enabled = true
file = "execution_timeline.html"
}
report {
enabled = true
file = "execution_report.html"
}
//trace {
// enabled = true
// file = "execution_trace.txt"
//}
// dag {
// enabled = true
// file = "pipeline_dag.svg"
// }
tower {
accessToken = 'c618fd637bd6f302b27117c547c4cdbd52c5c26a'
enabled = false
}