-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
67 lines (64 loc) · 2.1 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
conda {
useMamba = true // Enable Mamba
}
profiles {
conda {
conda.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
mamba {
conda.enabled = true
conda.useMamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
docker {
docker.enabled = true
docker.userEmulation = true
conda.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
conda.enabled = false
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
singularity.envWhitelist = "HTTPS_PROXY,HTTP_PROXY,http_proxy,https_proxy,FTP_PROXY"
}
// test { includeConfig 'conf/test.config' }
// test_full { includeConfig 'conf/test_full.config' }
}
// def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
// timeline {
// enabled = true
// file = "${params.outdir}/pipeline_info/execution_timeline_${trace_timestamp}.html"
// }
// report {
// enabled = true
// file = "${params.outdir}/pipeline_info/execution_report_${trace_timestamp}.html"
// }
// trace {
// enabled = true
// file = "${params.outdir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
// }
// dag {
// enabled = true
// file = "${params.outdir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
// }