-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
130 lines (104 loc) · 2.92 KB
/
Copy pathnextflow.config
File metadata and controls
130 lines (104 loc) · 2.92 KB
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
params {
input = null
outdir = "results"
tools = null
help = false
logo = "${baseDir}/assets/pipelinelogo.png"
run_name = null
reference_base = null
reference_version = 1.0
build_references = false
genome = null
blastdb = null
freebayes_min_alternate_count = 50
freebayes_min_alternate_frac = 0.01
max_expected_errors = 2.0
max_ns = 0
remove_chimera = true
non_overlapping = false
amplicon_min_length = 50
amplicon_max_length = 200
max_mismatch = 1
merging_max_mismatch = 1
bloomfilter = "${baseDir}/assets/bloomfilter/phix.bf"
skip_multiqc = false
multiqc_config = "${baseDir}/conf/multiqc_config.yaml"
multiqc_logo = "${baseDir}/assets/pipelinelogo.png"
conda.enabled = false
singularity.enabled = false
docker.enabled = false
podman.enabled = false
publish_dir_mode = 'copy'
custom_config_base = "https://raw.githubusercontent.com/bio-raum/nf-configs/main"
}
manifest {
name = "marchoeppner/gmo-check"
version = "0.6.1"
description = "Pipeline to check for genetically modified food stuff"
author = "Marc Hoeppner"
homePage = "https://github.com/marchoeppner/gmo-check"
nextflowVersion = "25.04.5"
}
plugins {
id 'nf-schema@2.4.0'
}
validation {
help {
enabled = true
}
summary {
hideParams = [ "references" ]
}
}
process {
shell = ['/bin/bash', '-euo', 'pipefail']
resourceLimits = [ cpus: 4, memory: 16.GB, time: 72.h ]
}
timeline {
overwrite = true
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_timeline.html"
}
report {
overwrite = true
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_report.html"
}
trace {
overwrite = true
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_trace.txt"
}
dag {
overwrite = true
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_dag.svg"
}
// Module-specific configuration options
includeConfig 'conf/modules.config'
includeConfig 'conf/base.config'
includeConfig 'conf/modules/vsearch.conf'
includeConfig 'conf/modules/bwa.conf'
includeConfig 'conf/modules/dada2.conf'
// Load centrally stored profiles
includeConfig !System.getenv('NXF_OFFLINE') && params.custom_config_base ? "${params.custom_config_base}/custom.config" : "/dev/null"
// load resources info with updated site config
includeConfig 'conf/resources.config'
profiles {
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
podman {
podman.enabled = false
}
conda {
conda.enabled = false
}
test {
includeConfig 'conf/test.config'
}
}