-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
65 lines (56 loc) · 1.24 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
manifest {
mainScript = 'read_split.nf'
}
// default parameters
params {
max_cores = Runtime.runtime.availableProcessors()
cores = Runtime.runtime.availableProcessors()
memory = '12'
help = false
profile = false
// inputs
fastq = ''
fastq_pass = ''
list = false
samples = ''
demultiplex = false
read_until = ''
read_qc = false
seq_summary = ''
barcode_kit = ''
single = ""
// settings
guppy_cpu = false
guppy_model = 'dna_r9.4.1_450bps_hac.cfg'
// folder structure
cachedir = "singularity_images"
databases = "databases"
output = 'results'
runinfodir = "X.Pipeline-runinfo"
}
// runinfo
timeline {
enabled = true
overwrite = true
file = "${params.output}/runinfo/execution_timeline.html"
}
report {
enabled = true
overwrite = true
file = "${params.output}/runinfo/execution_report.html"
}
profiles {
local {
workDir = "work/nextflow-poreCov-$USER"
includeConfig 'configs/local.config'
executor {
name = "local"
cpus = params.max_cores
memory = params.memory
}
}
docker {
docker { enabled = true }
includeConfig 'configs/container.config'
}
}