-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
104 lines (84 loc) · 2.95 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
// Please do not change the order of the numbered sections!
// The expected order is: 1. Parameters - 2. Profiles - 3. Process - 4. Executor
// There is a high chance it would break the configuration of 'profiles'
// 1. Parameters
// NOTE:
// Initialise the values of the params to the preferred default value or to false
params {
// input options
input = false
outdir = 'results'
// report_dir is:
// - the folder from the container that includes the scripts for NF <= v20.01 (bin)
// - the ${projectDir}/bin folder of the root of the repo with the scripts for NF >= v20.10
report_dir = '/opt/bin/'
// when set to true, prints help and exits
help = false
// container for all processes, excluding those defined with 'withName' (see example below)
container = 'quay.io/lifebitai/ubuntu:18.10'
// process resources defaults
cpus = 1
memory = 2.GB
disk = '30.GB'
// max resources limits defaults
max_cpus = 2
max_memory = 4.GB
max_time = 8.h
// execution related defaults
config = 'conf/standard.config'
echo = false
errorStrategy = 'finish'
maxRetries = 9
maxForks = 200
queueSize = 200
executor = false
// google-lifesciences
gls_bootDiskSize = '50.GB'
gls_preemptible = true
zone = 'us-east1-b'
network = 'default'
subnetwork = 'default'
}
// 2. Profiles
// Do not update the order because the values set in params scope will not be overwritten
// Do not attempt to simplify to
// includeConfig params.config
// outside of profiles scope, it will fail to update the values of the params
profiles {
standard {includeConfig params.config}
docker { docker.enabled = true }
base {includeConfig 'conf/base.config'}
google {includeConfig 'conf/google.config'}
test {includeConfig 'conf/test.config'}
local {includeConfig 'conf/test.config'}
}
// 3. Process
// Do not change order of block, must follow after profiles scope (last section that updates params)
process {
echo = params.echo
cpus = params.cpus
memory = params.memory
maxRetries = params.maxRetries
maxForks = params.maxForks
container = params.container
errorStrategy = params.errorStrategy
// If your pipeline doesn't include a process named 'step_1', update the name to match your process of choice or delete this block
withName: step_1 {
disk = '30.GB'
cpus = 1
memory = '2.GB'
container = 'quay.io/lifebitai/step_1'
}
// If your pipeline doesn't include a process named 'report', update the name to match your process of choice or delete this block
withName: report {
disk = '30.GB'
cpus = 2
memory = '4.GB'
container = 'quay.io/lifebitai/report'
}
}
// 4. Executor - Do not remove this section! Required for running with different executors using --executor parameter
executor {
name = params.executor
queueSize = params.queueSize
}