Skip to content

Commit

Permalink
Update github_actions.config
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Mar 15, 2024
1 parent 396b5b7 commit 7e551e5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/github_actions.config
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ process {
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:panaroo {
publishDir = {
params.outdir,
mode: 'link',
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
pattern: "panaroo/core_gene_alignment.aln"
}
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:pbptyper {
Expand All @@ -143,6 +149,12 @@ process {
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:prokka {
publishDir = {
params.outdir,
mode: 'link',
saveAs: { filename -> filename.equals('versions.yml') ? null : filename },
pattern: "gff/*.gff"
}
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
withName:quast {
Expand Down Expand Up @@ -175,4 +187,4 @@ process {
withName:versions {
errorStrategy = { task.attempt < 2 ? 'retry' : 'terminate'}
}
}
}

0 comments on commit 7e551e5

Please sign in to comment.