-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
288 lines (230 loc) · 8.7 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
//============================================================================//
// Define params
//============================================================================//
// Global input
//============================================================================//
params.out_dir = 'output'
// Inputs
params.in_fastq = "input/*fastq.gz"
params.in_fastq_type = "Illumina" // options: "Illumina" or "Nanopore"
// Global settings
params.aligner = "Minimap2" // options: "Minimap2" or "STAR"
// Alignment settings
params.only_primary_alignments = "yes" // options: "yes" or "no"
// Sliding bed/bam
params.slide_bed_only_keep_wraparound = "no" // options: "yes" or "no"
// Generation of bed spans
params.bed_to_span_junc_reads_only_ILLUMINA = "yes"
params.bed_to_span_junc_reads_only_NANOPORE = "no"
// only required if supporting dRNA w/ illumina
params.bed_to_span_illumina_spans = ""
params.bed_to_span_n_illumina_junctions = 5
// Elongation - ILLUMINA SPECIFIC
params.illumina_bed_elongate_only_keep_spliced_reads = "yes"
// Filtering prodigal file for spliced ORFs
params.filter_prodigal_allowable_strands = "+"
// Diamond ORF alignment
params.diamond_outfmt = "6 qseqid sseqid evalue bitscore pident length qlen slen qstart qend sstart send"
params.diamond_temp_dir = "temp"
params.diamond_evalue = "10"
params.diamond_max_alignments = "0" // 0 - all alignments
params.diamond_include_unaligned = "TRUE" // options TRUE or FALSE
// VIRUS-SPECIFIC OPTIONS - USE A CONFIG
// ------------------------------------------------ //
// params.reference_genome_fasta = ""
// params.genome_length = 0 // length of a *single* reference genome
// params.reference_length = 0 // length of entire reference sequence
// params.diamond_database = "$baseDir/resources/ref/SV40/SV40_canonical_pr.dmnd"
// params.STAR_reference_index = ""
// params.n_genomes = 1 // total number of genomes in the entire reference sequence
// process_illumina.nf parameters
//============================================================================//
params.index = 'index.csv' //columns: sample_name, read1, read2. Header requiired.
params.trim_galore_run_fastqc = "T" // Runs fastqc, unless anything except "T" is specified
params.trim_galore_minlength = 40
//============================================================================//
// Process
//============================================================================//
profiles {
o2_slurm {
process {
// Global setting
executor = 'slurm'
queue = { task.time < 12.h ? "short" : "medium" }
cache = 'lenient'
conda = "$baseDir/resources/conda/conda_linux.yml"
beforeScript = "module load gcc conda2"
// Error handling
errorStrategy = 'retry'
maxRetries = 3
// resources
withName: Minimap2 {
time = { 1.h * task.attempt }
memory = { 30.GB * task.attempt }
cpus = { 5 * task.attempt }
}
withName: STAR {
time = { 5.h * task.attempt }
memory = { 50.GB * task.attempt }
cpus = 10
}
withName: slide_bed {
time = { 1.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
withName: bed_to_span {
time = { 1.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
withName: bed_elongate_illumina_reads {
time = { 1.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
withName: prodigal {
time = { 1.h * task.attempt }
memory = { 20.GB * task.attempt }
cpus = { 4 * task.attempt }
}
withName: filter_prodigal {
time = { 1.h * task.attempt }
memory = { 20.GB * task.attempt }
cpus = 1
}
withName: prodigal_to_orfs_direct {
time = { 1.h * task.attempt }
memory = { 20.GB * task.attempt }
cpus = { 1 * task.attempt }
}
withName: diamond {
time = { 1.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = { 4 * task.attempt }
}
withName: bed_extract_representatives {
time = { 1.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
withName: characterize_ORFs {
time = { 1.h * task.attempt }
memory = { 20.GB * task.attempt }
cpus = 1
}
withName: bam_coverage {
time = { 45.m * task.attempt }
memory = { 20.GB * task.attempt }
cpus = { 5 * task.attempt }
}
//================================================================//
// Workflow parameters for process_illumina.nf
//================================================================//
withName: trim_galore {
time = { 4.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 4
}
withName: reverse_complement_read1 {
time = { 4.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
withName: label_illumina_reads {
time = { 4.h * task.attempt }
memory = { 10.GB * task.attempt }
cpus = 1
}
}
//============================================================================//
// Misc settings
//============================================================================//
executor {
// Let nextflow submit up to this many jobs in parallel at one time
queueSize = 5000
}
report {
enabled = true
file = "$params.out_dir/nf_information/pipeline_report.html"
}
timeline {
enabled = true
file = "$params.out_dir/nf_information/timeline.html"
}
trace {
enabled = true
file = "$params.out_dir/nf_information/trace.tsv"
}
conda {
cacheDir = "/n/data2/dfci/medonc/decaprio/jason/nf_conda_envs"
}
} // this closes the o2_slurm profile
o2_local {
process {
// Global setting
executor = 'local'
cache = 'lenient'
conda = "$baseDir/resources/conda/conda_linux.yml"
beforeScript = "module load gcc conda2"
// Error handling
errorStrategy = 'retry'
maxRetries = 3
}
//============================================================================//
// Misc settings
//============================================================================//
executor {
// Let nextflow submit up to this many jobs in parallel at one time
queueSize = 5000
}
report {
enabled = true
file = "$params.out_dir/nf_information/pipeline_report.html"
}
timeline {
enabled = true
file = "$params.out_dir/nf_information/timeline.html"
}
trace {
enabled = true
file = "$params.out_dir/nf_information/trace.tsv"
}
conda {
cacheDir = "/n/data2/dfci/medonc/decaprio/jason/nf_conda_envs"
}
} // this closes the o2_local profile
mac {
process {
// Global setting
executor = 'local'
cache = 'lenient'
conda = "$baseDir/resources/conda/conda_mac.yml"
// Error handling
errorStrategy = 'retry'
maxRetries = 3
}
//============================================================================//
// Misc settings
//============================================================================//
executor {
// Let nextflow submit up to this many jobs in parallel at one time
queueSize = 5000
}
report {
enabled = true
file = "$params.out_dir/nf_information/pipeline_report.html"
}
timeline {
enabled = true
file = "$params.out_dir/nf_information/timeline.html"
}
trace {
enabled = true
file = "$params.out_dir/nf_information/trace.tsv"
}
conda {
cacheDir = "/Users/jnom/Documents/Research/DeCaprio_Meyerson/code/conda_envs"
}
} // this closes the mac profile
} // this closes the entire profiles thing