Skip to content
This repository has been archived by the owner on Jan 27, 2020. It is now read-only.

fix input for RunAscat (was not a set) #726

Merged
merged 2 commits into from
Feb 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### `Fixed`
- [#720](https://github.com/SciLifeLab/Sarek/pull/720) - bamQC is now run on the recalibrated bams, and not after MarkDuplicates
- [#726](https://github.com/SciLifeLab/Sarek/pull/726) - Fix Ascat ref file input (one file can't be a set)

## [2.2.2] - 2018-12-19

Expand Down
2 changes: 1 addition & 1 deletion somaticVC.nf
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ process RunAscat {

input:
set idPatient, idSampleNormal, idSampleTumor, file(bafNormal), file(logrNormal), file(bafTumor), file(logrTumor) from convertAlleleCountsOutput
set file(acLociGC) from Channel.value([referenceMap.acLociGC])
file(acLociGC) from Channel.value([referenceMap.acLociGC])

output:
set val("ascat"), idPatient, idSampleNormal, idSampleTumor, file("${idSampleTumor}.*.{png,txt}") into ascatOutput
Expand Down