-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
65 lines (54 loc) · 1.12 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
manifest {
name = 'fredjaya/rec-bench'
author = 'Fred Jaya'
homePage = 'https://github.com/fredjaya/rec-bench'
description = 'Benchmarking of recombination detection methods using SANTA-SIM'
}
// Params
params.out = "${baseDir}/out"
params.bin = "${baseDir}/bin"
params.trace = "${params.out}/tracing"
params.mode = 'none'
params.seq = 'none'
params.xml = 'none'
params.sim_fa = 'none'
process {
withLabel: local {
executor = 'local'
cpus = 2
memory = 4.GB
}
withLabel: sim_benchmark {
errorStrategy = { task.exitStatus == 143 ? 'ignore' : 'ignore' }
executor = 'pbs'
cpus = 1
memory = 16.GB
time = '24h'
}
withLabel: slurm {
errorStrategy = { task.exitStatus == 143 ? 'ignore' : 'ignore' }
executor = 'slurm'
cpus = 1
memory = 8.GB
time = '24h'
}
withLabel: empirical {
executor = 'pbs'
cpus = 1
memory = 64.GB
time = '125h'
}
}
trace {
enabled = true
sep = ','
}
timeline {
enabled = true
}
dag {
enabled = true
}
report {
enabled = true
}