-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
81 lines (68 loc) · 1.46 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
cleanup = false
workDir = '/pasteur/appa/scratch/jfumey/busco/work/'
env.OPENBLAS_NUM_THREADS=1
env.OMP_NUM_THREADS=1
executor {
name = 'slurm'
queueSize = 2000
}
report {
enabled = true
file = 'reports/report.html'
}
trace {
enabled = true
file = 'reports/trace.txt'
}
timeline {
enabled = true
file = 'reports/timeline.html'
}
dag{
enabled = true
file = 'reports/dag.dot'
}
singularity {
enabled = true
autoMounts = true
runOptions = '--home $HOME:/home/$USER --bind /pasteur'
cacheDir = '/pasteur/appa/scratch/jfumey/singularity'
}
process {
executor='slurm'
scratch=false
maxRetries=30
errorStrategy='retry'
//queue='dedicated'
//clusterOptions='--account=hubbioit --partition=hubbioit --qos=hubbioit'
withLabel: ncbi{
container="ncbi/edirect"
executor='local'
}
withLabel: busco{
container="ezlabgva/busco:v5.4.3_cv1"
cpus=40
memory='400G'
//env.OPENBLAS_NUM_THREADS=1
//env.OMP_NUM_THREADS=1
}
withLabel: selectGenome{
container="evolbioinfo/python-evol:v3.8.2b"
cpus=1
memory='1G'
}
withLabel: dl{
executor='local'
errorStrategy='ignore'
}
withLabel: samtools{
container='evolbioinfo/samtools:v1.11'
cpus=1
memory='10G'
}
withLabel: extractResults{
container="evolbioinfo/python-evol:v3.8.2b"
cpus=1
memory='1G'
}
}