-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnextflow.config
60 lines (51 loc) · 1.44 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
// Copyright (C) 2022,2023 Genome Research Ltd.
params {
results_dir = "./nextflow_results"
reference_manifest = "./reference_manifest.csv"
sequencing_manifest = ""
variant_caller = "medaka"
clair3_args = ""
min_barcode_dir_size = 10
keep_bam_files = false
help = false
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
profiles {
standard {
docker {
enabled = true
runOptions = '-v "/mnt":"/mnt"'
}
}
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
conda.enabled = false
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
conda.enabled = false
}
conda {
conda.enabled = true
singularity.enabled = false
docker.enabled = false
}
sanger_local {
docker {
enabled = false
}
singularity {
enabled = true
autoMounts = true
cacheDir = "${PWD}"
// To avoid downloading/converting to singularity image every time
libraryDir = '/data/pam/installs/custom_installs/nextflow_singularity_library/'
runOptions = "--bind /lustre,/nfs,/software,/data"
}
}
}