Skip to content

Commit

Permalink
Merge pull request #514 from nf-core/fix-missing-concoct-globs
Browse files Browse the repository at this point in the history
Fix missing concoct globs
  • Loading branch information
jfy133 authored Sep 27, 2023
2 parents 62b2d1c + 3943efa commit 3cd0541
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`

- [#514](https://github.com/nf-core/mag/pull/514) Fix missing CONCOCT files in downstream output (reported by @maxibor, fix by @jfy133)

### `Dependencies`

## 2.4.0 - 2023-09-26
Expand Down
6 changes: 5 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,10 @@ process {
ext.prefix = { "${meta.assembler}-MaxBin2-${meta.id}" }
}

withName: DASTOOL_FASTATOCONTIG2BIN_CONCOCT {
ext.prefix = { "${meta.assembler}-CONCOCT-${meta.id}" }
}

withName: DASTOOL_FASTATOCONTIG2BIN_TIARA {
ext.prefix = { "${meta.assembler}-${meta.binner}-${meta.id}" }
}
Expand Down Expand Up @@ -687,7 +691,7 @@ process {
path: { "${params.outdir}/GenomeBinning/DASTool/bins" },
mode: params.publish_dir_mode,
// pattern needs to be updated in case of new binning methods
pattern: '*-{MetaBAT2,MaxBin2}Refined-*.fa'
pattern: '*-{MetaBAT2,MaxBin2,CONCOCT}Refined-*.fa'
]
]
}
Expand Down

0 comments on commit 3cd0541

Please sign in to comment.