Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix reported bugs #334

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## v2.3.1 - XXXX-XX-XX- Gray Zinc Dalmation Patch

- [[#328]](https://github.com/nf-core/smrnaseq/pull/328) - Fix [casting issue](https://github.com/nf-core/smrnaseq/issues/327) in mirtrace module
- [[#334]](https://github.com/nf-core/smrnaseq/pull/334) - Fix [input channel cardinality](https://github.com/nf-core/smrnaseq/issues/331) in `MIRDEEP2_RUN` module
- [[#334]](https://github.com/nf-core/smrnaseq/pull/334) - Fix [bowtie conda version](https://github.com/nf-core/smrnaseq/issues/333) in `BOWTIE_MAP_SEQ` module

### Software dependencies

Expand Down
2 changes: 1 addition & 1 deletion modules/local/bowtie_map_mirna.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process BOWTIE_MAP_SEQ {
tag "$meta.id"
label 'process_medium'

conda 'bowtie=1.3.0-2 bioconda::samtools=1.13'
conda 'bowtie=1.3.0 bioconda::samtools=1.13'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mulled-v2-ffbf83a6b0ab6ec567a336cf349b80637135bca3:40128b496751b037e2bd85f6789e83d4ff8a4837-0' :
'biocontainers/mulled-v2-ffbf83a6b0ab6ec567a336cf349b80637135bca3:40128b496751b037e2bd85f6789e83d4ff8a4837-0' }"
Expand Down
4 changes: 2 additions & 2 deletions modules/local/mirdeep2_run.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ process MIRDEEP2_RUN {
input:
path(fasta)
tuple path(reads), path(arf)
tuple val(meta2), path(hairpin)
tuple val(meta2), path(mature)
path(hairpin)
path(mature)

output:
path 'result*.{bed,csv,html}', emit: result
Expand Down
Loading