-
Notifications
You must be signed in to change notification settings - Fork 277
/
hasta.config
45 lines (37 loc) · 1.12 KB
/
hasta.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
params {
// Specific nf-core/configs params
config_profile_contact = 'Sofia Stamouli (@sofstam)'
config_profile_description = 'nf-core/taxprofiler HASTA profile provided by nf-core/configs'
validationSchemaIgnoreParams = "priority,clusterOptions,schema_ignore_params,genomes,fasta"
}
process {
withName: BBMAP_BBDUK {
memory = { 72.GB * task.attempt }
}
withName: KRAKEN2_KRAKEN2 {
memory = { 96.GB * task.attempt }
time = { 24.h * task.attempt }
cpus = 12
}
withName: MALT_RUN {
memory = { 72.GB * task.attempt }
}
withName: MEGAN_RMA2INFO_TSV {
memory = { 72.GB * task.attempt }
}
withName: DIAMOND_BLASTX {
cpus = { 36 * task.attempt }
memory = { 72.GB * task.attempt }
time = { 72.h * task.attempt }
}
withName: KAIJU_KAIJU2TABLE {
cpus = { 6 * task.attempt }
memory = { 36.GB * task.attempt }
time = { 8.h * task.attempt }
}
withName: MULTIQC {
cpus = 2
memory = { 4.GB * task.attempt }
time = { 4.h * task.attempt }
}
}