Skip to content

Commit

Permalink
Merge pull request #80 from nf-core/zn_output_bai
Browse files Browse the repository at this point in the history
fix: file glob
  • Loading branch information
SPPearce authored Oct 5, 2024
2 parents 811b32c + 48f6d61 commit a89b4cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Enhancements & fixes

- [PR #79](https://github.com/nf-core/fastquorum/pull/79) - Publish aligned consensus bai file
- [PR #79](https://github.com/nf-core/fastquorum/pull/79) and [PR #80](https://github.com/nf-core/fastquorum/pull/90) - Publish aligned consensus bai file

## [[1.0.1]](https://github.com/nf-core/fastquorum/releases/tag/1.0.1) -- 2024-09-10

Expand Down
6 changes: 3 additions & 3 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ process {
publishDir = [
path: { "${params.outdir}/preprocessing/align_raw_bam/${meta.id}" },
mode: params.publish_dir_mode,
pattern: '*.mapped.{bam, bam.bai}'
pattern: '*.mapped.{bam,bam.bai}'
]
}

Expand Down Expand Up @@ -129,7 +129,7 @@ process {
publishDir = [
path: { "${params.outdir}/consensus_filtering/filtered/${meta.id}" },
mode: params.publish_dir_mode,
pattern: '*.cons.filtered.{bam, bam.bai}'
pattern: '*.cons.filtered.{bam,bam.bai}'
]
}

Expand All @@ -141,7 +141,7 @@ process {
publishDir = [
path: { "${params.outdir}/filtering/align_consensus_bam/${meta.id}" },
mode: params.publish_dir_mode,
pattern: '*.mapped.{bam, bam.bai}'
pattern: '*.mapped.{bam,bam.bai}'
]
}

Expand Down

0 comments on commit a89b4cf

Please sign in to comment.