-
Notifications
You must be signed in to change notification settings - Fork 277
/
psmn.config
69 lines (64 loc) · 1.68 KB
/
psmn.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
//Profile config names for nf-core/configs
params {
config_profile_description = 'PSMN (Pôle Scientifique de Modélisation Numérique) HPC cluster profile'
config_profile_contact = 'Laurent Modolo (@l-modolo)'
config_profile_url = 'http://www.ens-lyon.fr/PSMN/doku.php?id=en:accueil'
}
charliecloud {
enabled = true
cacheDir = "/Xnfs/abc/charliecloud"
runOptions = "--bind /scratch:/scratch --bind /Xnfs:/Xnfs --bind /home:/home"
readOnlyInputs = true
}
process {
resourceLimits = [
memory: 370.GB,
cpus: 32,
time: 96.h
]
executor = 'slurm'
queue = "E5,Lake"
cpus = 1
memory = 32.GB
time = 24.h
withLabel: 'process_single|process_single_thread|sc_tiny|sc_small|sc_medium' {
queue = "Lake"
cpus = 1
memory = 96.GB
time = 24.h
}
withLabel: 'process_low|mc_small|process_very_low' {
queue = "Lake"
cpus = 16
memory = 80.GB
time = 24.h
}
withLabel: 'process_medium|mc_medium' {
queue = "Lake"
cpus = 32
memory = 180.GB
time = 48.h
}
withLabel: 'process_high|mc_large|mc_huge|process_high_cpus|cpus_max' {
queue = "Lake"
cpus = 32
memory = 370.GB
time = 48.h
}
withLabel: 'process_long|process_maximum_time|process_long_parallelized' {
queue = "Lake"
time = 96.h
}
withLabel: 'process_high_memory|memory_max' {
queue = "Epyc"
memory = 500.GB
}
withLabel: gpu {
queue = "E5-GPU"
}
}
params {
max_memory = 370.GB
max_cpus = 32
max_time = 96.h
}