-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow.config
104 lines (101 loc) · 3.14 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
includeConfig "${baseDir}/parameters/process/general_params.config"
includeConfig "${baseDir}/parameters/process/globalfilt_params.config"
includeConfig "${baseDir}/parameters/process/genstruct_params.config"
includeConfig "${baseDir}/parameters/process/treemix.config"
includeConfig "${baseDir}/parameters/process/sig_sel_params.config"
profiles{
debug { process.beforeScript = 'echo $HOSTNAME' }
conda {
conda.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
mamba {
conda.enabled = true
conda.useMamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
docker {
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
arm {
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
singularity.runOptions = '-B $SINGULARITY_TMPDIR'
singularity.envWhitelist = ['SINGULARITY_TMPDIR']
}
podman {
podman.enabled = true
docker.enabled = false
singularity.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
shifter {
shifter.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
charliecloud.enabled = false
}
charliecloud {
charliecloud.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
}
gitpod {
executor.name = 'local'
executor.cpus = 16
executor.memory = 60.GB
}
test_genstruct { includeConfig 'parameters/test/test_genetic_structure.config' }
test_filt { includeConfig 'parameters/test/globalfilt_params.config' }
test_full { includeConfig 'conf/test_full.config' }
}
process{
executor="local"
time = "48h"
//queue = "serial_std"
withLabel: 'twoCpus' {
memory='1G'
cpus='2'
//time='48h'
}
withLabel: 'oneCpu' {
//queue = "bigcpus"
memory='1G'
cpus='1'
//time='48h'
}
withLabel: 'sixteenCpus' {
memory='24G'
cpus='10'
//time='48h'
}
withLabel: 'fourCpus' {
memory='6G'
cpus='4'
//time='48h'
}
}