Skip to content

Commit 809f060

Browse files
authored
Merge pull request #1345 from nf-core/fix_preprocessing_call
Fix preprocessing call
2 parents 5bd04b4 + 4ed0cc6 commit 809f060

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
105105
- [PR #1340](https://github.com/nf-core/rnaseq/pull/1340) - Remove out-of-date Azure specific guidance
106106
- [PR #1341](https://github.com/nf-core/rnaseq/pull/1341) - Add rename in the MultiQC report for samples without techreps
107107
- [PR #1342](https://github.com/nf-core/rnaseq/pull/1342) - Factor out preprocessing
108+
- [PR #1345](https://github.com/nf-core/rnaseq/pull/1345) - Fix preprocessing call
108109

109110
### Parameters
110111

modules.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
},
325325
"fastq_qc_trim_filter_setstrandedness": {
326326
"branch": "master",
327-
"git_sha": "b86de50ab60c19ab40e70a4501820f4cb307050b",
327+
"git_sha": "22c8d535286728605ccd229e5d1bb014cb965f8f",
328328
"installed_by": ["subworkflows"]
329329
},
330330
"fastq_subsample_fq_salmon": {

subworkflows/nf-core/fastq_qc_trim_filter_setstrandedness/main.nf

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workflows/rnaseq/main.nf

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ workflow RNASEQ {
139139
params.skip_fastqc || params.skip_qc,
140140
params.skip_trimming,
141141
params.skip_umi_extract,
142-
!params.salmon_index && params.pseudo_aligner == 'salmon' && !skip_pseudo_alignment,
142+
!params.salmon_index && params.pseudo_aligner == 'salmon' && !params.skip_pseudo_alignment,
143143
!params.sortmerna_index && params.remove_ribo_rna,
144144
params.trimmer,
145145
params.min_trimmed_reads,

0 commit comments

Comments
 (0)