-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
64 lines (51 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// PIPELINE CONFIGURATION =====================================================
// Pipeline Information -------------------------------------------------------
manifest {
author = '...'
name = '...'
description = '...'
homePage = 'https://github.com/comp-med/nf-...'
}
// Default workflow parameters ------------------------------------------------
params {
help = false
version = '0.0.1'
outDir = './output/'
input = false
}
// Resume pipeline from last successful process
resume = true
// Input Parameters -----------------------------------------------------------
params {
}
// Logging & Extras -----------------------------------------------------------
// Produce a workflow diagram
// More info: https://www.nextflow.io/docs/latest/tracing.html#dag-visualisation
dag {
enabled = true
overwrite = true
file = 'runInfo/dag.svg'
}
// Output resource and runtime reports for a workflow run
report {
enabled = true
overwrite = true
file = 'runInfo/report.html'
}
timeline {
enabled = true
overwrite = true
file = 'runInfo/timeline.html'
}
trace {
enabled = true
overwrite = true
file = 'runInfo/trace.txt'
}
// Profiles -------------------------------------------------------------------
// Enable various profiles depending on compute infrastructure to be run on
// More info: https://www.nextflow.io/docs/latest/config.html#config-profiles
profiles {
cluster { includeConfig "config/cluster.config" }
test { includeConfig "config/test.config" }
}