Skip to content

Commit

Permalink
Add toggling of publishDir for merged reads
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjameskennedy committed Feb 13, 2025
1 parent 57145f1 commit b8d1ae1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `cmd.config`
- Added `params.trace_timestamp` to `nextflow.config`
- Added `changelog_update_reminder` GA workflow
- Added optional ability to save merged reads

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ process {
path: { "${params.outdir}/fastq_pass_merged" },
mode: params.publish_dir_mode,
pattern: 'fastq_pass_merged',
enable: params.save_merged_reads
enabled: params.save_merged_reads
]
}

Expand All @@ -32,7 +32,7 @@ process {
path: { "${params.outdir}/fastq_pass_merged" },
mode: params.publish_dir_mode,
pattern: 'fastq_pass_merged',
enable: params.save_merged_reads
enabled: params.save_merged_reads
]
}

Expand Down

0 comments on commit b8d1ae1

Please sign in to comment.