-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
46 lines (43 loc) · 1.01 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
manifest {
name = 'metagenlab/MeSS-figures'
author = """Farid Chaabane, Trestan Pillonel, Claire Bertelli"""
homePage = 'https://github.com/metagenlab/MeSS-figures'
description = """Supplementary figures and scripts for the MeSS paper"""
mainScript = 'main.nf'
nextflowVersion = '!>=24.04.4'
version = '1.0'
doi = '10.5281/zenodo.14499940'
}
params {
ext = "{R1,R2}"
}
apptainer {
enabled = true
autoMounts = true
cacheDir = "containers"
}
process {
withLabel: process_single {
cpus = 1
memory = 1.GB
time = 1.h
}
withLabel: process_low {
cpus = 2
memory = 12.GB
time = 2.h
}
withLabel: process_medium {
cpus = 6
memory = 36.GB
time = 6.h
}
withLabel: process_high {
cpus = 16
memory = 80.GB
time = 10.h
}
withLabel: process_high_memory {
memory = 200.GB
}
}