-
Notifications
You must be signed in to change notification settings - Fork 5
/
resources.config
73 lines (72 loc) · 2.02 KB
/
resources.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
process {
withName:fastqc_1_2 {
cpus = 2
memory = '4GB'
}
withName:trimmomatic_1_2 {
cpus = 2
memory = { 4.GB * task.attempt }
}
withName:filter_poly_1_3 {
cpus = 1
memory = { 4.GB * task.attempt }
}
withName:bowtie_1_4 {
memory = {5.Gb*task.attempt}
cpus = 4
}
withName:bowtie_build_1_4 {
memory = {5.Gb*task.attempt}
cpus = 1
}
withName:retrieve_mapped_1_5 {
memory = {5.Gb*task.attempt}
cpus = 2
}
withName:va_spades_1_7 {
cpus = 4
memory = { 5.GB * task.attempt }
scratch = true
}
withName:va_megahit_1_7 {
cpus = 4
memory = { 5.GB * task.attempt }
scratch = true
}
withName:assembly_mapping_1_8 {
cpus = 4
memory = { 5.GB * task.attempt }
}
withName:process_assembly_mapping_1_8 {
cpus = 1
memory = { 5.GB * task.attempt }
}
withName:pilon_1_9 {
cpus = 4
memory = { 7.GB * task.attempt }
}
withName:pilon_report_1_9 {
cpus = 1
memory = { 7.GB * task.attempt }
}
withName:split_assembly_1_10 {
cpus = 1
memory = { 1.GB * task.attempt }
}
withName:dengue_typing_assembly_1_11 {
cpus = 4
memory = '1GB'
}
withName:dengue_typing_reads_1_11 {
cpus = 4
memory = { 5.GB * task.attempt }
}
withName:mafft_1_12 {
cpus = 4
memory = { 4.GB * task.attempt }
}
withName:raxml_1_13 {
cpus = 4
memory = { 4.GB * task.attempt }
}
}