-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
executable file
·67 lines (58 loc) · 1.29 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
params {
contrasts = 'contrasts.txt'
counts = 'counts_mageck.txt'
cnv = 'cnv.txt'
resultsDir = 'results'
min_count = 30
min_rra_window = 0
help = false
}
process {
cpus = 1
time = { 20.m * task.attempt }
$mageck {
memory = { 5.GB * task.attempt }
}
$postprocess {
memory = { 1.GB * task.attempt }
}
}
timeline {
enabled = true
}
profiles {
standard {
process.executor = 'local'
}
docker {
process.executor = 'local'
docker.enabled = true
process.container = 'docker://zuberlab/mageck-nf'
errorStrategy = 'retry'
maxRetries = 3
maxForks = 20
}
singularity {
process.executor = 'local'
singularity.enabled = true
process.container = 'docker://zuberlab/mageck-nf'
errorStrategy = 'retry'
maxRetries = 3
maxForks = 20
}
conda {
process.executor = 'local'
errorStrategy = 'retry'
maxRetries = 3
maxForks = 20
}
slurm {
process.executor = 'slurm'
process.clusterOptions = '--qos=short'
singularity.enabled = true
process.container = 'docker://zuberlab/mageck-nf'
errorStrategy = 'retry'
maxRetries = 3
maxForks = 20
}
}