Skip to content

Commit

Permalink
Update mirdeep2 publish_dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
sguizard committed Oct 18, 2023
1 parent dd97948 commit b59a73f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,14 @@ if (!params.skip_mirdeep) {
process {
withName: 'MIRDEEP2_MAPPER' {
publishDir = [
path: { "${params.outdir}/mirdeep" },
path: { "${params.outdir}/mirdeep2/mapper" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}
withName: 'MIRDEEP2_RUN' {
publishDir = [
path: { "${params.outdir}/mirdeep2/run" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
Expand Down

0 comments on commit b59a73f

Please sign in to comment.