-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnextflow.config
97 lines (85 loc) · 2.13 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
manifest {
mainScript = 'condor.nf'
description = 'exportable pipeline'
}
report {
enabled = true
file = 'report.html'
}
trace {
enabled = true
file = 'trace.txt'
}
executor {
name = 'slurm'
queueSize = 100
queueStatInterval = '5min'
exitReadTimeout = '600sec'
}
profiles {
pasteurgalaxy{
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = "--no-home"
singularity.cacheDir='/pasteur/zeus/projets/p00/galaxy-prod/singularity'
singularity.runOptions = "--bind /pasteur"
process.executor ='slurm'
process.queue= 'common,dedicated'
process.clusterOptions = '--qos fast'
}
pasteurcluster{
process.executor ='slurm'
process.queue= 'common,dedicated'
process.clusterOptions = '--qos fast'
singularity.runOptions = "--bind /pasteur --no-home"
singularity.enabled = true
singularity.autoMounts = true
//singularity.runOptions = "--no-home"
}
docker{
docker.enabled=true
docker.runOptions = "--entrypoint=''"
process.executor ='local'
}
}
process{
shell = ['/bin/bash', '-ueo','pipefail']
cpus = 1
executor = 'local'
memory='3G'
maxRetries=10
errorStrategy='retry'
withLabel: python {
memory='40G'
cpus=5
container = 'evolbioinfo/python-evol:v3.7.3condor' //to update need to add statsmodels.api and statsmodels.stats
}
withLabel: gotree {
container= 'evolbioinfo/gotree:v0.4.4'
}
withLabel: goalign {
container = 'evolbioinfo/goalign:v0.3.3c'
}
withLabel : iqtree2 {
container = 'evolbioinfo/iqtree:v2.1.3'
cpus=20
memory='50G'
}
withLabel : iqtree {
container = 'evolbioinfo/iqtree:v1.6.8'
cpus=20
memory='50G'
}
withLabel : pastml {
container = 'evolbioinfo/pastml:v1.9.33'
cpus = 20
memory='50G'
}
withLabel : bayestraits {
container = 'evolbioinfo/bayestraits:v3.0.1'
memory='3G'
errorStrategy='retry'
maxRetries=3
maxForks=50
}
}