-
Notifications
You must be signed in to change notification settings - Fork 4
/
nextflow.config
executable file
·47 lines (38 loc) · 1012 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
manifest {
homePage = 'https://github.com/iarcbioinfo/strelka2-nf'
description = 'Use strelka2 pipeline with nextflow'
mainScript = 'strelka2.nf'
}
profiles {
conda { process.conda = "$baseDir/environment.yml"
conda.createTimeout = "200 min" }
docker {
docker.enabled = true
process.container = 'iarcbioinfo/strelka2-nf:v1.2'
}
singularity {
singularity.enabled = true
process.container = 'shub://IARCbioinfo/strelka2-nf:v1.2'
pullTimeout = "200 min"
}
}
process {
shell = ['/bin/bash','-o','pipefail']
}
params.output_folder="."
timeline {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/strelka2-nf_timeline.html"
}
report {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/strelka2-nf_report.html"
}
trace {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/strelka2-nf_trace.txt"
}
dag {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/strelka2-nf_dag.html"
}