Skip to content

Commit

Permalink
fix: Update publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Aug 1, 2024
1 parent ebd5813 commit b74de5d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ plugins {
}

process {

publishDir = [
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" },
mode: 'copy', // HACK hardcoded
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
enabled: false
]

withName: primer3_results2fasta {
publishDir = [
path: { "${params.outdir}/primers" },
mode: 'copy', // HACK hardcoded
]
}
}

manifest {
Expand Down

0 comments on commit b74de5d

Please sign in to comment.