-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
69 lines (64 loc) · 1.23 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
executor {
name = 'slurm'
queueSize = 100
submitRateLimit = '100/1min'
exitReadTimeout = '259200 sec'
pollInterval = '1 min'
queueStatInterval = '5 min'
}
tower {
enabled = true
accessToken = 'eyJ0aWQiOiA2OTEzfS4zMWIxNmFmMDQ4NjgzNjhkMjRkNGIxMDcyOTI2ZGJmZDBlZDkyNDEy'
}
process {
clusterOptions = "--cluster wice -A lcfdna_labepi"
errorStrategy = { task.exitStatus == 140 ? 'retry' : 'ignore' }
withName: 'TRIM' {
cpus = 10
memory = 10.GB
time = '5h'
}
withName: 'ALIGN' {
cpus = 17
memory = 50.GB
time = '5h'
}
withName: 'FILTER' {
cpus = 10
memory = 1.GB
time = '5 min'
}
withName: 'DEDUPLICATE' {
cpus = 31
memory = 170.GB
time = '2h'
}
withName: 'MBIAS' {
cpus = 31
memory = 170.GB
time = '30 min'
}
withName: 'EXTRACT_REGIONS' {
cpus = 13
memory = 10.GB
time = '10 min'
}
withName: 'EXTRACT_CPGS' {
cpus = 13
memory = 10.GB
time = '10 min'
}
withName: 'FASTQC' {
cpus = 5
memory = 10.GB
}
withName: 'MULTIFASTQC' {
cpus = 5
memory = 10.GB
}
withName: 'MERGE' {
cpus = 20
memory = 100.GB
time = '2h'
}
}