-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
43 lines (37 loc) · 975 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
manifest {
author = "Jeff Vierstra"
mainScript = "main.nf"
defaultBranch = "master"
name = "dhs-index-pipeline"
description = "Build a DHS index from BAM files"
version = "0.1"
nextflowVersion = "21.04.1"
}
// Run with a stricter shell, so errors are caught earlier
process.shell = ['/bin/bash', '-ueo','pipefail' ]
profiles {
Altius {
// Run on SLURM and load the appropriate modules
process {
executor = "slurm"
queue = "queue0,pool,bigmem"
memory = { 32.GB * task.attempt }
cache = "deep"
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'terminate' }
maxRetries = 3
conda = '/home/jvierstra/.local/miniconda3/envs/py3.9_default'
}
executor {
$slurm {
queueSize = 400
}
}
// Logging
// trace.enabled = true
// trace.file = "pipeline_trace.txt"
// timeline.enabled = true
// timeline.file = "pipeline_timeline.html"
// report.enabled = true
// report.file = "pipeline_report.html"
}
}