forked from nf-core/sarek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
219 lines (195 loc) · 7.75 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
* -------------------------------------------------
* nf-core/sarek Nextflow config file
* -------------------------------------------------
* Default config options for all environments.
*/
// Global default params, used in configs
params {
// Workflow flags:
// Mandatory arguments
input = null // No default input
step = 'mapping' // Starts with mapping
// Genome and references options
genome = 'GRCh38'
igenomes_base = 's3://ngi-igenomes/igenomes/'
igenomes_ignore = false
genomes_base = null // Disabled by default
save_reference = null // Built references not saved
// Main options
help = false
no_intervals = null // Intervals will be built from the fasta file
nucleotides_per_second = 1000.0 // Default interval size
sentieon = null // Not using Sentieon by default
skip_qc = null // All QC tools are used
target_bed = false // No default TargetBED file for targeted sequencing
tools = null // No default Variant_Calling or Annotation tools
// Modify fastqs (trim/split)
trim_fastq = false // No trimming
clip_r1 = 0
clip_r2 = 0
three_prime_clip_r1 = 0
three_prime_clip_r2 = 0
trim_nextseq = 0
save_trimmed = false
split_fastq = null // Fastq files will not be split by default
// Preprocessing
aligner = 'bwa-mem'
markdup_java_options = '"-Xms4000m -Xmx7g"' // Established values for markDuplicates memory consumption, see https://github.com/SciLifeLab/Sarek/pull/689 for details
use_gatk_spark = false // GATK Spark implementation of their tools in local mode not used by default
save_bam_mapped = null // Mapped BAMs not saved
skip_markduplicates = null // Do not skip markDuplicates by default
// Variant Calling
ascat_ploidy = null // Use default value
ascat_purity = null // Use default value
cf_coeff = "0.05" // default value for Control-FREEC
cf_ploidy = "2" // you can use 2,3,4
cf_window = null // by default we are not using this in Control-FREEC
generate_gvcf = null // g.vcf are not produced by HaplotypeCaller by default
no_strelka_bp = null // Strelka will use Manta candidateSmallIndels if available
pon = false // No default PON (Panel of Normals) file for GATK Mutect2 / Sentieon TNscope
pon_index = false // No default PON index for GATK Mutect2 / Sentieon TNscope
ignore_soft_clipped_bases = null // no --dont-use-soft-clipped-bases for GATK Mutect2
umi = null // no umi
read_structure1 = null // no umi
read_structure2 = null // no umi
// Annotation
annotate_tools = null // Only with --step annotate
annotation_cache = null // Annotation cache disabled
cadd_cache = null // CADD cache disabled
cadd_indels = false // No CADD InDels file
cadd_indels_tbi = false // No CADD InDels index
cadd_wg_snvs = false // No CADD SNVs file
cadd_wg_snvs_tbi = false // No CADD SNVs index
genesplicer = null // genesplicer disabled within VEP
snpeff_cache = null // No directory for snpEff cache
vep_cache = null // No directory for VEP cache
// Custom config
config_profile_contact = false
config_profile_description = false
config_profile_url = false
custom_config_version = 'master'
custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
// Other options
outdir = './results'
publish_dir_mode = 'copy' // Default PublishDirMode (same as other nf-core pipelines)
sequencing_center = null // No sequencing center to be written in BAM header in MapReads process
multiqc_config = false
monochrome_logs = false // Monochrome logs disabled
email = false // No default email
email_on_fail = false
plaintext_email = false // Plaintext email disabled
max_multiqc_email_size = 25.MB
hostnames = false
name = false // No default name
tracedir = "${params.outdir}/pipeline_info"
// Base specifications
// Defaults only, expecting to be overwritten
cpus = 8
max_cpus = 16
max_memory = 128.GB
max_time = 240.h
single_cpu_mem = 7.GB
}
// Container slug
// Stable releases should specify release tag (ie: `2.5.2`)
// Developmental code should specify dev
process.container = 'nfcore/sarek:2.7'
// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
// Load nf-core custom profiles from different Institutions
try {
includeConfig "${params.custom_config_base}/nfcore_custom.config"
} catch (Exception e) {
System.err.println("WARNING: Could not load nf-core/config profiles: ${params.custom_config_base}/nfcore_custom.config")
}
// Load nf-core/sarek custom profiles from different Institutions
try {
includeConfig "${params.custom_config_base}/pipeline/sarek.config"
} catch (Exception e) {
System.err.println("WARNING: Could not load nf-core/config/sarek profiles: ${params.custom_config_base}/pipeline/sarek.config")
}
profiles {
conda { process.conda = "$projectDir/environment.yml" }
debug { process.beforeScript = 'echo $HOSTNAME' }
docker {
docker.enabled = true
docker.fixOwnership = true
}
singularity {
singularity.autoMounts = true
singularity.enabled = true
}
podman {
podman.enabled = true
}
test { includeConfig 'conf/test.config' }
test_annotation { includeConfig 'conf/test_annotation.config' }
test_use_gatk_spark { includeConfig 'conf/test_use_gatk_spark.config' }
test_split_fastq { includeConfig 'conf/test_split_fastq.config' }
test_targeted { includeConfig 'conf/test_targeted.config' }
test_tool { includeConfig 'conf/test_tool.config' }
test_trimming { includeConfig 'conf/test_trimming.config' }
test_umi_tso { includeConfig 'conf/test_umi_tso.config' }
test_umi_qiaseq { includeConfig 'conf/test_umi_qiaseq.config' }
}
// Load genomes.config or igenomes.config
if (!params.igenomes_ignore) {
includeConfig 'conf/igenomes.config'
} else {
includeConfig 'conf/genomes.config'
}
// Export these variables to prevent local Python/R libraries from conflicting with those in the container
env {
PYTHONNOUSERSITE = 1
R_PROFILE_USER = "/.Rprofile"
R_ENVIRON_USER = "/.Renviron"
}
// Export these variables to prevent local Python/R libraries from conflicting with those in the container
env {
PYTHONNOUSERSITE = 1
R_PROFILE_USER = "/.Rprofile"
R_ENVIRON_USER = "/.Renviron"
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
dag {
enabled = true
file = "${params.tracedir}/pipeline_dag.svg"
}
report {
enabled = true
file = "${params.tracedir}/execution_report.html"
}
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline.html"
}
trace {
enabled = true
file = "${params.tracedir}/execution_trace.txt"
}
manifest {
name = 'nf-core/sarek'
author = 'Maxime Garcia, Szilveszter Juhos'
homePage = 'https://github.com/nf-core/sarek'
description = 'An open-source analysis pipeline to detect germline or somatic variants from whole genome or targeted sequencing'
mainScript = 'main.nf'
nextflowVersion = '>=20.04.0'
version = '2.7'
}
// Return the minimum between requirements and a maximum limit to ensure that resource requirements don't go over
def check_resource(obj) {
try {
if (obj.getClass() == nextflow.util.MemoryUnit && obj.compareTo(params.max_memory as nextflow.util.MemoryUnit) == 1)
return params.max_memory as nextflow.util.MemoryUnit
else if (obj.getClass() == nextflow.util.Duration && obj.compareTo(params.max_time as nextflow.util.Duration) == 1)
return params.max_time as nextflow.util.Duration
else if (obj.getClass() == java.lang.Integer)
return Math.min(obj, params.max_cpus as int)
else
return obj
} catch (all) {
println " ### ERROR ### Max params max_memory:'${params.max_memory}', max_time:'${params.max_time}' or max_cpus:'${params.max_cpus}' is not valid! Using default value: $obj"
}
}