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

Commit 18ae58f

Browse files
authored
Merge pull request #672 from MaxUlysse/Singularity
fix expected output of PullSingularityContainers process
2 parents 4ea9a43 + f071960 commit 18ae58f

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
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414
### `Fixed`
1515

1616
- [#665](https://github.com/SciLifeLab/Sarek/pull/665) - Input bam file now has always the same name (whether it is from a single fastq pair or multiple) in the MarkDuplicates process, so metrics too
17+
- [#672](https://github.com/SciLifeLab/Sarek/pull/672) - process `PullSingularityContainers` from `buildContainers.nf` now expect a file with the correct `.simg` extension for singularity images, and no longer the `.img` one.
1718

1819
## [2.2.1] - 2018-10-04
1920

buildContainers.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ process PullSingularityContainers {
9292
val container from singularityContainers
9393

9494
output:
95-
file("${container}-${params.tag}.img") into imagePulled
95+
file("${container}-${params.tag}.simg") into imagePulled
9696

9797
when: params.singularity
9898

0 commit comments

Comments
 (0)