-
Notifications
You must be signed in to change notification settings - Fork 6
/
nextflow.config
176 lines (154 loc) · 4.63 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
//
// Notes to End Users.
//
// The workflow should run without editing this configuration file,
// however there may be instances in which you wish to edit this
// file for compute performance or other reasons. Please see:
//
// https://nextflow.io/docs/latest/config.html#configuration
//
// for further help editing this file.
params {
// I/O args
fastq = null
reference = null
out_dir = "output"
sample = null
sample_sheet = null
analyse_unclassified = false
combine_results = false
igv = false
// filtering + downsampling args
min_read_length = 300
max_read_length = null
min_read_qual = 10
drop_frac_longest_reads = 0.05
take_longest_remaining_reads = true
reads_downsampling_size = 1500
min_n_reads = 40
// mapping + variant calling args
number_depth_windows = 100
min_coverage = 20
override_basecaller_cfg = null
medaka_target_depth_per_strand = 150
// de-novo mode options
force_spoa_length_threshold = 2000
spoa_minimum_relative_coverage = 0.15
spoa_max_allowed_read_length = 5000
minimum_mean_depth = 30
primary_alignments_threshold = 0.7
// misc
help = false
version = false
aws_image_prefix = null
aws_queue = null
disable_ping = false
threads = 4
// schema etc.
monochrome_logs = false
validate_params = true
show_hidden_params = false
schema_ignore_params = 'show_hidden_params,validate_params,monochrome_logs,aws_queue,aws_image_prefix,wf,epi2melabs'
wf {
fastcat_stats = true
example_cmd = [
"--fastq 'wf-amplicon-demo/fastq'",
"--reference 'wf-amplicon-demo/reference.fa'"
]
common_sha = "shad28e55140f75a68f59bbecc74e880aeab16ab158"
container_sha = "sha0ba67476938520e6f132759780d0a0e902925c59"
container_sha_medaka = "sha3486abaab0d3b90351617eb8622acf2028edb154"
agent = null
}
}
manifest {
name = 'epi2me-labs/wf-amplicon'
author = 'Oxford Nanopore Technologies'
homePage = 'https://github.com/epi2me-labs/wf-amplicon'
description = 'Amplicon workflow'
mainScript = 'main.nf'
nextflowVersion = '>=23.04.2'
version = 'v1.1.4'
}
epi2melabs {
tags = 'amplicon,alignment,variant calling'
}
// used by default for "standard" (docker) and singularity profiles,
// other profiles may override.
process {
withLabel:wf_common {
container = "ontresearch/wf-common:${params.wf.common_sha}"
}
withLabel:wfamplicon {
container = "ontresearch/wf-amplicon:${params.wf.container_sha}"
}
withLabel:medaka {
container = "ontresearch/medaka:${params.wf.container_sha_medaka}"
}
shell = ['/bin/bash', '-euo', 'pipefail']
}
profiles {
// the "standard" profile is used implicitely by nextflow
// if no other profile is given on the CLI
standard {
docker {
enabled = true
// this ensures container is run as host user and group, but
// also adds host user to the within-container group
runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
}
}
// using singularity instead of docker
singularity {
singularity {
enabled = true
autoMounts = true
}
}
// keep stub conda profile to prevent unknown profile warning so users get a better error
conda {
conda.enabled = true
}
// Using AWS batch.
// May need to set aws.region and aws.batch.cliPath
awsbatch {
process {
executor = 'awsbatch'
queue = "${params.aws_queue}"
memory = '32G'
withLabel:wf_common {
container = "${params.aws_image_prefix}-wf-common:${params.wf.common_sha}"
}
withLabel:wfamplicon {
container = "${params.aws_image_prefix}-wf-amplicon:${params.wf.container_sha}"
}
withLabel:medaka {
container = "${params.aws_image_prefix}-medaka:${params.wf.container_sha_medaka}"
}
shell = ['/bin/bash', '-euo', 'pipefail']
}
}
// local profile for simplified development testing
local {
process.executor = 'local'
}
}
timeline {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/timeline.html"
}
report {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/report.html"
}
trace {
enabled = true
overwrite = true
file = "${params.out_dir}/execution/trace.txt"
}
env {
PYTHONNOUSERSITE = 1
JAVA_TOOL_OPTIONS = "-Xlog:disable -Xlog:all=warning:stderr"
}