Skip to content

Commit

Permalink
Merge pull request #36 from Ferlab-Ste-Justine/fix/clin-2947-make-res…
Browse files Browse the repository at this point in the history
…ume-work-again

fix: CLIN-2947 make resume work again
  • Loading branch information
LysianeBouchard authored Oct 21, 2024
2 parents 730f32e + 9573078 commit c31c086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`
- [#35](https://github.com/Ferlab-Ste-Justine/Post-processing-Pipeline/pull/35) Fix incorrect assumption about assets folder location in github ci workflow

- [#36](https://github.com/Ferlab-Ste-Justine/Post-processing-Pipeline/pull/36) Fix variable input in process BCFTOOLS_NORM causing resume problems

## v2.0.0dev

Expand Down
3 changes: 1 addition & 2 deletions subworkflows/local/exclude_mnps/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ workflow EXCLUDE_MNPS {

def ch_bcftoolsfilter_for_bcftoolsnorm = BCFTOOLS_FILTER.out.vcf.join(BCFTOOLS_FILTER.out.tbi)

ch_reference = input.map{meta,file -> [meta,reference_path]}
BCFTOOLS_NORM(ch_bcftoolsfilter_for_bcftoolsnorm,ch_reference)
BCFTOOLS_NORM(ch_bcftoolsfilter_for_bcftoolsnorm, [[:], reference_path])
ch_output_excludemnps = BCFTOOLS_NORM.out.vcf.join(BCFTOOLS_NORM.out.tbi)
.map{meta, vcf, tbi ->[meta,[vcf,tbi]]}

Expand Down

0 comments on commit c31c086

Please sign in to comment.