Skip to content

Commit

Permalink
Update echtvar
Browse files Browse the repository at this point in the history
  • Loading branch information
fellen31 committed Aug 12, 2024
1 parent 7f064db commit 37a2f25
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 46 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#277](https://github.com/genomic-medicine-sweden/nallo/pull/277) - Allowed CNV calling as soon as SNV calling for a sample is finished
- [#278](https://github.com/genomic-medicine-sweden/nallo/pull/278) - Changed the SNV ranking to run in parallel per region
- [#300](https://github.com/genomic-medicine-sweden/nallo/pull/300) - Clarified and formatted nallo.nf
- [#306](https://github.com/genomic-medicine-sweden/nallo/pull/306) - Updated echtvar version

### `Removed`

Expand Down Expand Up @@ -96,6 +97,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
| htslib | 1.19.1 | 1.20 |
| cadd | | 1.6.post1 |
| gawk | | 5.3.0 |
| echtvar | 0.1.7 | 0.2.0 |

## v0.2.0 - [2024-06-26]

Expand Down
2 changes: 1 addition & 1 deletion modules/local/echtvar/anno/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process ECHTVAR_ANNO {
tag "$meta.id"
label 'process_single'

container "docker.io/fellen31/echtvar:latest"
container "docker.io/fellen31/echtvar:0.2.0"

input:
tuple val(meta), path(vcf)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/echtvar/encode/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process ECHTVAR_ENCODE {
tag "$meta.id"
label 'process_single'

container "docker.io/fellen31/echtvar:latest"
container "docker.io/fellen31/echtvar:0.2.0"

input:
tuple val(meta), path(bcf)
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/local/snv_annotation/tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ nextflow_workflow {
{ assert snapshot(
workflow.out.versions,
file(workflow.out.tbi.get(0).get(1)).name,
path(workflow.out.vcf.get(0).get(1)).linesGzip[47..118], // Stable
path(workflow.out.vcf.get(0).get(1)).linesGzip[120..150] // Stable
path(workflow.out.vcf.get(0).get(1)).linesGzip[48..118], // Stable
path(workflow.out.vcf.get(0).get(1)).linesGzip[121..150] // Stable
).match() }
)
}
Expand Down
Loading

0 comments on commit 37a2f25

Please sign in to comment.