forked from nf-core/exoseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
44 lines (40 loc) · 1.09 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
/*
vim: syntax=groovy
-*- mode: groovy;-*-
* -------------------------------------------------
* NGI-ExoSeq Nextflow config file
* -------------------------------------------------
* Default config options for all environments.
* Cluster-specific config options should be saved
* in the conf folder and imported under a profile
* name here.
*/
profiles {
legion {
includeConfig 'conf/legion.config'
}
myriad {
includeConfig 'conf/myriad.config'
}
standard {
includeConfig 'conf/uppmax.config'
}
local {
includeConfig 'conf/local.config'
}
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
params.outdir = './results'
timeline {
enabled = true
file = "${params.outdir}/NGI-ExoSeq_timeline.html"
}
trace {
enabled = true
file = "${params.outdir}/NGI-ExoSeq_trace.txt"
}
manifest {
homePage = 'https://github.com/SciLifeLab/NGI-ExoSeq'
description = 'Nextflow Exome Sequencing Best Practice analysis pipeline, used at the SciLifeLab National Genomics Infrastructure.'
}