-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
62 lines (55 loc) · 1 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
profiles {
standard {
process {
container = 'ghcr.io/cobralab/magetbrain-nextflow:master'
executor = 'local'
}
apptainer.enabled = true
}
niagara {
process {
executor = 'slurm'
queueSize = 1000
module = 'cobralab'
withName: registerAffine {
cpus = 8
memory = 32.GB
}
withName: registerNonLinear {
cpus = 8
memory = 32.GB
}
withName: resampleLabel {
cpus = 1
memory = 4.GB
time = 15.min
}
withName: majorityVote {
cpus = 2
memory = 8.GB
time = 15.min
}
}
}
beluga {
process {
executor = 'slurm'
queueSize = 1000
module = 'StdEnv/2023:gcc/12.3:ants/2.5.0:nextflow'
}
}
}
process {
errorStrategy = 'finish'
cache = 'lenient'
}
report {
enabled = true
}
dag {
enabled = true
verbose = true
}
timeline {
enabled = true
}