-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
53 lines (43 loc) · 1007 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
profiles {
local {
process.executor = 'local'
docker.enabled = true
}
docker {
docker.enabled = true
}
test {
process.executor = 'local'
docker.enabled = true
params.input = 'samplesheet.csv' // Only provide input for test profile
params.dryrun = true
params.aws_secret_prefix = 'TEST'
}
cds {
params.aws_secret_prefix = 'CDS'
docker.enabled = true
}
sage { includeConfig 'conf/sage.config'}
tower { includeConfig 'conf/tower.config'}
}
params{
dryrun = false
take_n = -1
params.change_bucket = false
}
// Consolidate plugins into a single block
plugins {
id '[email protected]'
id 'nf-boost'
}
boost {
cleanup = false
}
trace {
enabled = true
overwrite = true
file = 'reports/trace.csv'
sep = ','
fields = 'task_id,hash,native_id,name,status,exit,submit,duration,realtime,%cpu,peak_rss,peak_vmem,rchar,wchar'
}
docker.enabled = true