Skip to content

Commit

Permalink
Avoid publishing versions.yml with module outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuhlich committed Aug 19, 2024
1 parent 3d99268 commit b33cd40
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ process {
publishDir = [
path: { "${params.outdir}/registration/ashlar" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

Expand All @@ -51,6 +52,7 @@ process {
publishDir = [
path: { "${params.outdir}/segmentation/deepcell_mesmer" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

Expand All @@ -59,13 +61,15 @@ process {
publishDir = [
path: { "${params.outdir}/segmentation/cellpose" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: MCQUANT {
publishDir = [
path: { "${params.outdir}/quantification/mcquant/${meta2.segmenter}" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

Expand All @@ -74,6 +78,7 @@ process {
publishDir = [
path: { "${params.outdir}/tma_dearray" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]

}
Expand Down

0 comments on commit b33cd40

Please sign in to comment.