Skip to content

Commit 5913b33

Browse files
authored
Merge pull request #883 from nf-core/fastqc-thread-fix
Fastqc thread fix
2 parents 98a9545 + bec759f commit 5913b33

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
### `Fixed`
1111

1212
- [#882](https://github.com/nf-core/eager/pull/882) Define DSL1 execution explicitly, as new versions Nextflow made DSL2 default (♥ to & fix from @Lehmann-Fabian)
13+
- [#879](https://github.com/nf-core/eager/issues/879) Add missing threads parameter for pre-clipping FastQC for single end data that caused insufficient memory in some cases (♥ to @marcel-keller for reporting)
1314

1415
### `Dependencies`
1516

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ process fastqc {
703703
"""
704704
} else {
705705
"""
706-
fastqc -q $r1
706+
fastqc -t ${task.cpus} -q $r1
707707
rename 's/_fastqc\\.zip\$/_raw_fastqc.zip/' *_fastqc.zip
708708
rename 's/_fastqc\\.html\$/_raw_fastqc.html/' *_fastqc.html
709709
"""

0 commit comments

Comments
 (0)