-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
61 lines (59 loc) · 1.39 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
manifest {
mainScript = 'main.nf'
defaultBranch = 'main'
homePage = 'https://github.com/FredHutch/interop-nf'
nextflowVersion = '20.10.0'
name = 'InterOp QC'
}
report {
enabled = true
file = 'interop.nextflow.report.html'
}
profiles {
standard {
process {
withLabel: 'io_limited' {
cpus = { 1 }
memory = { 2.GB }
maxRetries = 1
}
withLabel: 'io_net' {
cpus = { 1 }
memory = { 2.GB }
maxRetries = 1
}
withLabel: 'mem_medium' {
cpus = { 1 }
memory = { 4.GB }
maxRetries = 1
}
withLabel: 'mem_veryhigh' {
cpus = { 1 }
memory = { 8.GB }
maxRetries = 1
}
}
}
testing {
process {
executor = 'local'
errorStrategy = 'terminate'
withLabel: 'io_limited' {
cpus = 1
memory = 2.GB
}
withLabel: 'mem_medium' {
cpus = 2
memory = 4.GB
}
withLabel: 'mem_veryhigh' {
cpus = 2
memory = 4.GB
}
}
docker {
enabled = true
temp = 'auto'
}
}
}