-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnextflow.config
57 lines (56 loc) · 1.16 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
profiles {
standard {
process.executor = "local"
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
singularity.cacheDir = "singularity/containers"
}
apptainer {
apptainer.enabled = true
apptainer.autoMounts = true
apptainer.cacheDir = "apptainer/containers"
}
test {
includeConfig "test/example_run.config"
}
sge {
process.executor = "sge"
process {
withLabel: huge_memory {
clusterOptions = "-S /bin/bash -l tmem=64G,h_vmem=64G,h_rt=03:00:00"
}
withLabel: big_memory {
clusterOptions = "-S /bin/bash -l tmem=32G,h_vmem=32G,h_rt=03:00:00"
}
withLabel: mid_memory {
clusterOptions = "-S /bin/bash -l tmem=4G,h_vmem=4G,h_rt=03:00:00"
}
withLabel: small_memory {
clusterOptions = "-S /bin/bash -l tmem=1G,h_vmem=1G,h_rt=03:00:00"
}
}
}
slurm {
process.executor = "slurm"
process {
withLabel: huge_memory {
memory = 64.Gb
time = 3.h
}
withLabel: big_memory {
memory = 32.Gb
time = 3.h
}
withLabel: mid_memory {
memory = 4.Gb
time = 3.h
}
withLabel: small_memory {
memory = 1.Gb
time = 3.h
}
}
}
}