Skip to content

Commit

Permalink
fixed config file
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Mar 15, 2024
1 parent ebdc5c4 commit 113e3ec
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/github_actions.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ process {
}
withLabel:process_low {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
time = { 2.h * task.attempt }
memory = { 12.GB * task.attempt }
time = { 2.h * task.attempt }
}
withLabel:process_medium {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
time = { 4.h * task.attempt }
}
withLabel:process_high {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
time = { 16.h * task.attempt }
}
withLabel:process_long {
time = { 20.h * task.attempt }
memory = { 12.GB * task.attempt }
time = { 4.h * task.attempt }
}
withLabel:process_high {
cpus = { 2 * task.attempt }
memory = { 12.GB * task.attempt }
time = { 16.h * task.attempt }
}
withLabel:process_long {
time = { 20.h * task.attempt }
}
withLabel:process_high_memory {
memory = { 12.GB * task.attempt }
Expand Down Expand Up @@ -132,7 +132,7 @@ process {
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:panaroo {
publishDir = { params.outdir, mode: 'link', pattern: "panaroo/core_gene_alignment.aln"}
publishDir = [ path: "grandeur", mode: 'link', pattern: "panaroo/core_gene_alignment.aln"]
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:pbptyper {
Expand All @@ -145,7 +145,7 @@ process {
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:prokka {
publishDir = { params.outdir, mode: 'link', pattern: "gff/*.gff" }
publishDir = [ path: "grandeur", mode: 'link', pattern: "gff/*.gff" ]
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:quast {
Expand Down

0 comments on commit 113e3ec

Please sign in to comment.