generated from IARCbioinfo/template-nf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
45 lines (38 loc) · 933 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
manifest {
homePage = 'https://github.com/iarcbioinfo/DPclust-nf'
description = 'nf pipeline to run DPclust on a series of samples'
mainScript = 'main.nf'
}
profiles {
conda { process.conda = "$baseDir/environment.yml" }
docker {
docker.enabled = true
process.container = 'iarcbioinfo/DPclust-nf'
}
singularity {
singularity.enabled = true
process.container = 'shub://IARCbioinfo//DPclust-nf'
}
}
process {
shell = ['/bin/bash','-euo','pipefail']
}
params {
output_folder = "."
}
timeline {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/DPclust_timeline.html"
}
report {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/DPclust_report.html"
}
trace {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/DPclust_trace.txt"
}
dag {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/DPclust_dag.html"
}