-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnextflow_local.config
49 lines (43 loc) · 1006 Bytes
/
nextflow_local.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
process {
executor = 'local'
debug = true
cpus = 8
memory = '32 GB'
containerOptions = '--memory-swap=-1 --memory-swappiness 20 --shm-size=4g'
withName: spikesort_kilosort25 {
errorStrategy = 'retry'
maxRetries = 3
maxErrors = 5
}
withName: spikesort_kilosort4 {
errorStrategy = 'retry'
maxRetries = 3
maxErrors = 5
}
}
docker {
enabled = true
platform = 'linux/amd64'
runOptions = '--volume $DATA_PATH:/tmp/data'
envWhitelist = ['KACHERY_ZONE', 'KACHERY_CLOUD_CLIENT_ID', 'KACHERY_CLOUD_PRIVATE_KEY']
}
dag {
enabled = true
file = RESULTS_PATH + '/nextflow/dag.html'
overwrite = true
}
report {
enabled = true
file = RESULTS_PATH + '/nextflow/report.html'
overwrite = true
}
timeline {
enabled = true
file = RESULTS_PATH + '/nextflow/timeline.html'
overwrite = true
}
trace {
enabled = true
file = RESULTS_PATH + '/nextflow/trace.txt'
overwrite = true
}