-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·106 lines (95 loc) · 2.22 KB
/
nextflow.config
File metadata and controls
executable file
·106 lines (95 loc) · 2.22 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Preform work directory cleanup after a successful run
cleanup = true
executor {
name = 'slurm'
queueSize = 10000
}
report {
enabled = true
file = 'reports/report.html'
overwrite=true
}
trace {
enabled = true
file = 'reports/trace.txt'
overwrite=true
}
timeline {
enabled = true
file = 'reports/timeline.html'
overwrite=true
}
dag {
enabled = true
file = 'reports/dag.dot'
overwrite=true
}
profiles {
standard {
process {
scratch=false
maxRetries=30
errorStrategy='retry'
cache='deep'
withLabel: phyml {
container='evolbioinfo/phyml:v3.3.20200621'
cpus=1
memory={3.GB * task.attempt}
}
withLabel: gotree {
container='evolbioinfo/gotree:v0.4.2'
cpus=1
memory='15G'
}
withLabel: goalign {
container='evolbioinfo/goalign:dev0537492'
cpus=1
memory='20G'
}
withLabel: r {
container='evolbioinfo/r-extended:v4.3.3'
cpus=1
memory='20G'
}
}
}
local {
process.executor = 'local'
}
pasteur {
process.executor = 'slurm'
process.queue = {task.attempt > 1 ? "cnrvir" : "common,dedicated" }
clusterOptions = {task.attempt > 1 ? "-A cnrvir" : "--qos=fast" }
}
arm64 {
process {
withLabel: phyml {
container='evolbioinfo/phyml:v3.3.20200621_arm64'
cpus=1
memory={3.GB * task.attempt}
}
}
}
slurm {
process.executor = 'slurm'
process.queue = "queue"
clusterOptions = "--qos=fast"
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = "--no-home"
singularity.cacheDir = "singularity"
}
docker {
docker.enabled = true
docker.runOptions = "--entrypoint ''"
}
}
params {
msa = "data/alignment.fasta"
results="results"
collapse=0.1
collapseref=false
nboot = 200
}