generated from IARCbioinfo/template-nf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
41 lines (34 loc) · 904 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
manifest {
homePage = 'https://github.com/iarcbioinfo/TCR-BCR-nf'
description = 'Nextflow pipeline to genotype Tcell and Bcell receptors from bulk or single-cell RNAseq data'
mainScript = 'script.nf'
}
profiles {
conda { process.conda = "$baseDir/environment.yml" }
docker {
docker.enabled = true
process.container = 'quay.io/biocontainers/trust4:1.1.0--h43eeafb_0'
}
}
process {
shell = ['/bin/bash','-euo','pipefail']
}
params {
output_folder = "."
}
timeline {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/TCR-BCR-nf_timeline.html"
}
report {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/TCR-BCR-nf_report.html"
}
trace {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/TCR-BCR-nf_trace.txt"
}
dag {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/TCR-BCR-nf_dag.html"
}