Skip to content

Commit

Permalink
Merge pull request #328 from christopher-mohr/fix_mirtrace_cast
Browse files Browse the repository at this point in the history
Fix mirtrace cast issue
  • Loading branch information
apeltzer authored Mar 20, 2024
2 parents 83759fc + 684a84b commit d5910ec
Show file tree
Hide file tree
Showing 9 changed files with 183 additions and 27 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## v2.3.1 - XXXX-XX-XX- Gray Zinc Dalmation Patch

- _tbd_
- [[#328]](https://github.com/nf-core/smrnaseq/pull/328) - Fix [casting issue](https://github.com/nf-core/smrnaseq/issues/327) in mirtrace module

### Software dependencies

Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"samtools/sort": {
"branch": "master",
"git_sha": "f4596fe0bdc096cf53ec4497e83defdb3a94ff62",
"git_sha": "4352dbdb09ec40db71e9b172b97a01dcf5622c26",
"installed_by": ["bam_sort_stats_samtools", "modules"]
},
"samtools/stats": {
Expand Down Expand Up @@ -76,7 +76,7 @@
"nf-core": {
"bam_sort_stats_samtools": {
"branch": "master",
"git_sha": "f4596fe0bdc096cf53ec4497e83defdb3a94ff62",
"git_sha": "4352dbdb09ec40db71e9b172b97a01dcf5622c26",
"installed_by": ["subworkflows"]
},
"bam_stats_samtools": {
Expand Down
2 changes: 1 addition & 1 deletion modules/local/mirtrace.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process MIRTRACE_RUN {
'biocontainers/mirtrace:1.0.1--hdfd78af_1' }"

input:
tuple val(adapter), val(ids), path(reads)
tuple val(adapter), val(ids), val(reads)

output:
path "mirtrace/*" , emit: mirtrace
Expand Down
28 changes: 21 additions & 7 deletions modules/nf-core/samtools/sort/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 26 additions & 6 deletions modules/nf-core/samtools/sort/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 35 additions & 3 deletions modules/nf-core/samtools/sort/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

99 changes: 94 additions & 5 deletions modules/nf-core/samtools/sort/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion modules/nf-core/samtools/sort/tests/nextflow.config

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_sort_stats_samtools/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d5910ec

Please sign in to comment.