We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39291e7 commit b0b3607Copy full SHA for b0b3607
3 files changed
changelog.md
@@ -1,4 +1,6 @@
1
# Version 1.6
2
+## 1.6.2
3
+* Fix erroneous channel dump in inputReads.nf that was triggered by Nextflow 24.10
4
## 1.6.1
5
* Fix unnecessary parameter warning
6
## 1.6.0
modules/inputReads.nf
@@ -402,7 +402,6 @@ main:
402
if (params.fastqc) {
403
// Exclude I1 and I2 from fastqc
404
mainReads = fqSamples.flatMap{it.get(1)}.filter{getReadFromFqname(it.getName())[0] == 'R'}
405
- channel.dump(tag:'fastqc')
406
fastqc(mainReads)
407
reports = fastqc.out.zip
408
if (runDir != null) {
nextflow.config
@@ -1,6 +1,6 @@
manifest {
name = 'ScaleRna'
- version = '1.6.1'
+ version = '1.6.2'
description = 'ScaleBio Seq Suite: RNA workflow'
homePage = 'https://scale.bio'
}
0 commit comments