-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnextflow.config
59 lines (48 loc) · 1.2 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
/*
=======================================
Andersen Lab Variant Calling Pipeline
=======================================
*/
import java.time.*
Date now = new Date()
process {
cache = 'lenient'
container = 'andersenlab/gatk4:20220308221115e3f334'
}
manifest {
homePage = "http://www.andersenlab.org"
description = "C. elegans variant calling"
mainScript = "main.nf"
nextflowVersion = '>=23.0'
version = "3.0.0"
}
params {
tracedir = "pipeline_info"
timestamp = now.format("yyyyMMdd-HH-mm-ss")
bam_location = ""
help = false
debup = false
}
profiles {
standard { includeConfig 'conf/rockfish.config' }
rockfish { includeConfig 'conf/rockfish.config' }
quest { includeConfig 'conf/quest.config' }
local { includeConfig 'conf/local.config' }
gcp { includeConfig 'conf/gcp.config' }
}
timeline {
enabled = true
file = "${params.tracedir}/${params.timestamp}_timeline.html"
}
report {
enabled = true
file = "${params.tracedir}/${params.timestamp}_report.html"
}
trace {
enabled = true
file = "${params.tracedir}/${params.timestamp}_trace.txt"
}
dag {
enabled = true
file = "${params.tracedir}/${params.timestamp}_dag.svg"
}