-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
77 lines (70 loc) · 1.61 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
profiles {
local {
executor {
name = 'local'
cpus = 1
memory = '2G'
}
singularity.enabled = true
singularity.cacheDir = "$PWD"
singularity.autoMounts = true
singularity.pullTimeout = '40 min'
singularity.cacheDir = "."
singularity.runOptions = '-B /mnt/hc-storage/groups/cbf/Nextflow/SkeletalVis-Transcriptomics'
}
slurm {
process.errorStrategy ='finish'
process.executor = 'slurm'
executor.queueSize = 50
process.time = '2d'
singularity.enabled = true
singularity.cacheDir = "$PWD"
singularity.autoMounts = true
singularity.pullTimeout = '40 min'
singularity.cacheDir="."
singularity.runOptions = '-B /mnt/hc-storage/groups/cbf/Nextflow/SkeletalVis-Transcriptomics'
process {
withLabel: multi_big_mem {
executor = 'slurm'
memory = '12G'
cpus = 8
time = '6h'
}
withLabel: big_mem {
executor = 'slurm'
memory = '16G'
time = '3h'
}
withLabel: standard {
executor = 'slurm'
memory = '5G'
time = '2h'
}
withLabel: short_job {
executor = 'slurm'
memory = '4G'
time = '30m'
}
withLabel: very_short_job {
executor = 'slurm'
memory = '2G'
time = '5m'
}
withLabel: multi_cpu {
executor = 'slurm'
memory = '60G'
time = '16h'
cpus =8
}
withLabel: short_big_mem {
executor = 'slurm'
memory = '18G'
time = '1h'
cpus = 1
}
withLabel: download {
executor = 'local'
}
}
}
}