Skip to content

Commit

Permalink
chore: Fix config selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Dec 21, 2024
1 parent 2d19d95 commit e9d94ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [#171](https://github.com/nf-core/nascent/pull/171) - Clean up MultiQC report
- [#170](https://github.com/nf-core/nascent/pull/170) - Remove "Access to undefined parameter forwardStranded" warnings
- [#173](https://github.com/nf-core/nascent/pull/173) - Fix config selectors

### Changed

Expand Down
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ process {
]
}

withName: ".*:FASTQ_ALIGN_HISAT2:HISAT2_ALIGN" {
withName: "HISAT2_ALIGN" {
ext.args = "--met-stderr --new-summary --dta"
publishDir = [
[
Expand Down Expand Up @@ -275,7 +275,7 @@ process {
]
}

withName: '.*:BAM_RSEQC:RSEQC_READDISTRIBUTION ' {
withName: '.*:BAM_RSEQC:RSEQC_READDISTRIBUTION' {
publishDir = [
path: { "${params.outdir}/quality_control/rseqc/read_distribution" },
mode: params.publish_dir_mode,
Expand Down
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ params {
}

process {
withName: STAR_GENOMEGENERATE_IGENOMES {
withName: STAR_GENOMEGENERATE {
ext.args = '--genomeSAindexNbases 9'
}

Expand Down

0 comments on commit e9d94ba

Please sign in to comment.