forked from nf-core/sarek
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnextflow.config
More file actions
176 lines (156 loc) · 5.58 KB
/
nextflow.config
File metadata and controls
176 lines (156 loc) · 5.58 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
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
/*
* -------------------------------------------------
* nf-core/sarek Nextflow config file
* -------------------------------------------------
* Default config options for all environments.
*/
// Global default params, used in configs
params {
// Workflow flags
annotateTools = null // Only with --step annotate
genome = 'GRCh38'
input = null // No default input
noGVCF = null // g.vcf are produced by HaplotypeCaller
noStrelkaBP = null // Strelka will use Manta candidateSmallIndels if available
skipQC = null // All QC tools are used
step = 'mapping' // Starts with mapping
tools = null // No default Variant Calling or Annotation tools
// Workflow settings
annotation_cache = null // Annotation cache disabled
cadd_cache = null // CADD cache disabled
genesplicer = null // genesplicer disabled
markdup_java_options = '"-Xms4000m -Xmx7g"' //Established values for markDuplicate memory consumption, see https://github.com/SciLifeLab/Sarek/pull/689 for details
nucleotidesPerSecond = 1000.0 // Default interval size
outdir = './results'
publishDirMode = 'copy' // Default PublishDirMode (same as other nf-core pipelines)
saveGenomeIndex = null // Built Indexes not saved
sequencing_center = null // No sequencing center to be writen in BAM header in MapReads process
// Optional files/directory
cadd_InDels = false // No CADD files
cadd_InDels_tbi = false // No CADD files
cadd_WG_SNVs = false // No CADD files
cadd_WG_SNVs_tbi = false // No CADD files
pon = false // No default PON file for GATK Mutect2 Panel of Normal
snpEff_cache = null // No directory for snpEff cache
targetBED = false // No default TargetBED file for targeted sequencing
vep_cache = null // No directory for VEP cache
// AWSBatch
awsqueue = false
awsregion = 'eu-west-1'
// 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}"
// Reference genomes
igenomesIgnore = false
igenomes_base = 's3://ngi-igenomes/igenomes/'
// Default
help = false
hostnames = false
monochrome_logs = false // Monochrome logs disabled
multiqc_config = "${baseDir}/assets/multiqc_config.yaml" // Default multiqc config
name = false // No default name
tracedir = "${params.outdir}/pipeline_info"
// email
email = false // No default email
maxMultiqcEmailFileSize = 25.MB
plaintext_email = false // Plaintext email disabled
// Base specifications
cpus = 8
max_cpus = 16
max_memory = 128.GB
max_time = 240.h
singleCPUMem = 7.GB
// Deprecated params
annotateVCF = null
genomeDict = null
genomeFile = null
genomeIndex = null
noReports = null
sample = null
sampleDir = null
}
// Container slug. Stable releases should specify release tag!
// Developmental code should specify :dev
process.container = 'nfcore/sarek:2.5.1'
// 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")
}
profiles {
awsbatch { includeConfig 'conf/awsbatch.config' }
conda {
docker.enabled = false
process.conda = "$baseDir/environment.yml"
singularity.enabled = false
}
debug { process.beforeScript = 'echo $HOSTNAME' }
docker {
docker {
enabled = true
fixOwnership = true
runOptions = "-u \$(id -u):\$(id -g)"
}
singularity.enabled = false
}
singularity {
docker.enabled = false
singularity.autoMounts = true
singularity.enabled = true
}
test { includeConfig 'conf/test.config' }
}
// Load genomes.config or igenomes.config
if (!params.igenomesIgnore) {
includeConfig 'conf/igenomes.config'
} else {
includeConfig 'conf/genomes.config'
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline.html"
}
report {
enabled = true
file = "${params.tracedir}/execution_report.html"
}
trace {
enabled = true
file = "${params.tracedir}/execution_trace.txt"
}
dag {
enabled = true
file = "${params.tracedir}/pipeline_dag.svg"
}
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 = '>=19.04.0'
version = '2.5.1'
}
// 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"
}
}