Skip to content

Commit

Permalink
Merge pull request #1345 from nf-core/fix_preprocessing_call
Browse files Browse the repository at this point in the history
Fix preprocessing call
  • Loading branch information
pinin4fjords authored Jul 19, 2024
2 parents 5bd04b4 + 4ed0cc6 commit 809f060
Show file tree
Hide file tree
Showing 4 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 @@ -105,6 +105,7 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
- [PR #1340](https://github.com/nf-core/rnaseq/pull/1340) - Remove out-of-date Azure specific guidance
- [PR #1341](https://github.com/nf-core/rnaseq/pull/1341) - Add rename in the MultiQC report for samples without techreps
- [PR #1342](https://github.com/nf-core/rnaseq/pull/1342) - Factor out preprocessing
- [PR #1345](https://github.com/nf-core/rnaseq/pull/1345) - Fix preprocessing call

### Parameters

Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
},
"fastq_qc_trim_filter_setstrandedness": {
"branch": "master",
"git_sha": "b86de50ab60c19ab40e70a4501820f4cb307050b",
"git_sha": "22c8d535286728605ccd229e5d1bb014cb965f8f",
"installed_by": ["subworkflows"]
},
"fastq_subsample_fq_salmon": {
Expand Down

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

2 changes: 1 addition & 1 deletion workflows/rnaseq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ workflow RNASEQ {
params.skip_fastqc || params.skip_qc,
params.skip_trimming,
params.skip_umi_extract,
!params.salmon_index && params.pseudo_aligner == 'salmon' && !skip_pseudo_alignment,
!params.salmon_index && params.pseudo_aligner == 'salmon' && !params.skip_pseudo_alignment,
!params.sortmerna_index && params.remove_ribo_rna,
params.trimmer,
params.min_trimmed_reads,
Expand Down

0 comments on commit 809f060

Please sign in to comment.