forked from IARCbioinfo/RNAseq-transcript-nf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
executable file
·47 lines (39 loc) · 1.04 KB
/
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
47
manifest {
homePage = 'https://github.com/iarcbioinfo/RNAseq-transcript-nf'
description = 'RNA-seq transcript-level analysis nextflow pipeline'
mainScript = 'rnaseq-transcript.nf'
}
profiles {
conda {
process.conda = "$baseDir/environment.yml"
conda.createTimeout = "200 min"
}
docker {
docker.enabled = true
process.container = 'iarcbioinfo/rnaseq-transcript-nf:v2.2'
}
singularity {
singularity.enabled = true
process.container = 'shub://IARCbioinfo/RNAseq-transcript-nf:v2.2'
}
}
process {
shell = ['/bin/bash','-euo','pipefail']
}
params.output_folder="."
timeline {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/rnaseq-transcript-nf_timeline.html"
}
report {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/rnaseq-transcript-nf_report.html"
}
trace {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/rnaseq-transcript-nf_trace.txt"
}
dag {
enabled = true
file = "${params.output_folder}/nf-pipeline_info/rnaseq-transcript-nf_dag.html"
}