-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
74 lines (61 loc) · 1.38 KB
/
nextflow.config
File metadata and controls
74 lines (61 loc) · 1.38 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
manifest {
author = 'BCCDC-PHL: Tara Newman and Jessica Caleta'
description = 'Nextflow pipeline for providing public health bioinfo.'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '0.1.0'
}
def stringIFY(dir){
fasta_dir_string = params.fasta_dir.toString() + '/*'
return fasta_dir_string
}
params {
// Boilerplate options
profile = false
help = false
outdir = './results'
input = "NO_FILE"
input_dir = "${projectDir}/resources/input/${params.input}"
name = false
tracedir = "${params.outdir}/pipeline_info"
all = false
resp = false
virus = false
bact = false
pathogen = "NO FILE"
email = "NO EMAIL INPUT"
question = "NO QUESTION INPUT"
question_file = "./questions/questions_file.txt"
fun = false
}
profiles {
conda {
process.conda = "$baseDir/environments/environment.yml"
if (params.cache) {
conda.cacheDir = params.cache
}
}
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
process {
withLabel: largecpu {
cpus = 8
}
}
timeline {
enabled = false
file = "${params.tracedir}/bioinflow_timeline.html"
}
report {
enabled = false
file = "${params.tracedir}/bioinflow_report.html"
}
trace {
enabled = false
file = "${params.tracedir}/bioinflow_trace.txt"
}
dag {
enabled = false
file = "${params.tracedir}/bioinflow_dag.svg"
}