Skip to content

Commit

Permalink
update publishDir path
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Mar 11, 2024
1 parent e98f444 commit 0e7efe2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,14 @@ if (params.aligner == 'kallisto') {
if (params.aligner == 'cellrangermulti') {
process {
withName: FASTQC { ext.prefix = { "${meta.id}_${meta.feature_type}" } } // allow distinguishment of data types after renaming
withName: 'NFCORE_SCRNASEQ:SCRNASEQ:CELLRANGER_MULTI_ALIGN:CELLRANGER_MULTI' { ext.prefix = null } // force it null, for some reason it was being wrongly read in the module
withName: 'NFCORE_SCRNASEQ:SCRNASEQ:CELLRANGER_MULTI_ALIGN:CELLRANGER_MULTI' {
ext.prefix = null // force it null, for some reason it was being wrongly read in the module
publishDir = [
path: "${params.outdir}/${params.aligner}/count",
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}
withName: 'GUNZIP*' {
publishDir = [
enabled: false
Expand All @@ -235,6 +242,12 @@ if (params.aligner == 'cellrangermulti') {
mode: params.publish_dir_mode
]
}
withName: CELLRANGER_MKVDJREF {
publishDir = [
path: "${params.outdir}/${params.aligner}/mkvdjref",
mode: params.publish_dir_mode
]
}
}
}

Expand Down

0 comments on commit 0e7efe2

Please sign in to comment.