Skip to content

Commit

Permalink
fix: remove space in glob
Browse files Browse the repository at this point in the history
  • Loading branch information
znorgaard committed Oct 4, 2024
1 parent a028710 commit a0fb774
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 Down

0 comments on commit a0fb774

Please sign in to comment.