Skip to content

Commit 01cf3e9

Browse files
authored
Merge pull request #667 from IdoBar/patch-3
Fix file staging for print_nuclear_contamination
2 parents 24f05c5 + 966f7e0 commit 01cf3e9

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
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
### `Fixed`
1111

12+
- [#666](https://github.com/nf-core/eager/issues/666) - Fixed input file staging for `print_nuclear_contamination`
1213
- [#631](https://github.com/nf-core/eager/issues/631): - Update minimum Nextflow version to 20.07.1, due to unfortunate bug in Nextflow 20.04.1 causing eager to crash if patch pulled
1314
- Made MultiQC crash behaviour stricter when dealing with large datasets, as reported by @ashildv
1415

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2932,7 +2932,7 @@ process print_nuclear_contamination{
29322932
params.run_nuclear_contamination
29332933

29342934
input:
2935-
val 'Contam' from ch_from_nuclear_contamination.map { it[7] }.collect()
2935+
path Contam from ch_from_nuclear_contamination.map { it[7] }.collect()
29362936

29372937
output:
29382938
file 'nuclear_contamination.txt'

0 commit comments

Comments
 (0)