-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
120 lines (100 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
manifest {
author = "Jimmy Liu"
version = "v1.1.0"
name = "tCANS"
mainScript = "main.nf"
nextflowVersion = ">=21.0.0"
manifest.defaultBranch = "main"
homePage = 'https://github.com/jimmyliu1326/tCANS'
description = 'Consensus calling for tiling amplicon nanopore sequencing'
}
params {
// I/O
input = null
reference = null
out_dir = null
primers = null
// base options
help = null
version = null
// slurm options
account = null
// dehosting options
host = null
// gpu options
gpu = null
medaka_batchsize = 100
// read QC options
min_rl = 200
max_rl = 0
min_rq = 7
notrim = null
// consensus calling options
max_depth = 1000
min_depth = 10
max_N = 0.75
// blast options
run_blast = false
blast_evalue = 0.01
// msa options
run_msa = false
// ignore params
schema_ignore_params = 'client_fields'
}
process {
withLabel:process_low {
cpus = { 4 }
memory = { 8.GB }
time = { 2.h }
}
withLabel:process_medium {
cpus = { 16 }
memory = { 16.GB }
time = { 4.h }
}
withLabel:process_high {
cpus = { 32 }
memory = { 32.GB }
time = { 8.h }
}
}
profiles {
standard {
includeConfig 'conf/docker.config'
}
docker {
includeConfig 'conf/docker.config'
}
slurm {
includeConfig 'conf/slurm.config'
}
singularity {
includeConfig 'conf/singularity.config'
}
test {
includeConfig 'conf/test.config'
}
}
// resource config
includeConfig 'conf/resources.config'
// Trace pipeline execution metrics
timeline {
enabled = true
file = "${params.out_dir}/pipeline_info/execution_timeline.html"
overwrite = true
}
report {
enabled = true
file = "${params.out_dir}/pipeline_info/execution_report.html"
overwrite = true
}
trace {
enabled = true
file = "${params.out_dir}/pipeline_info/execution_trace.txt"
overwrite = true
}
dag {
enabled = true
file = "${params.out_dir}/pipeline_info/pipeline_dag.svg"
overwrite = true
}