-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
44 lines (36 loc) · 1 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
params {
// set default parameter values
outdir = 'results/'
outPrefix = 'tetris'
}
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.outdir}/pipeline_info/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.outdir}/pipeline_info/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
}
// Pointers to profile configs
// you can select the relevant profile from the command line with -profile <profile-name>
// e.g. nextflow run main.nf -profile awsbatch
profiles {
local {
includeConfig './conf/local.config'
}
awsbatch_spot {
includeConfig './conf/awsbatch_spot.config'
}
awsbatch {
includeConfig './conf/awsbatch.config'
}
}