Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update echtvar #306

Merged
merged 2 commits into from
Aug 12, 2024
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
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
11 changes: 11 additions & 0 deletions modules/local/echtvar/anno/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM ubuntu:22.04

USER root

RUN apt-get update && apt-get install -y procps sed && rm -rf /var/lib/apt/lists/*
# install app
COPY echtvar /usr/bin/echtvar

# final configuration
ENV FLASK_APP=echtvar
8 changes: 8 additions & 0 deletions modules/local/echtvar/anno/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
This docker was created with the following commands:

```bash
wget https://github.com/brentp/echtvar/releases/download/v0.2.0/echtvar
chmod +x echtvar
docker build . -t fellen31/echtvar:0.2.0
docker push fellen31/echtvar:0.2.0
```
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"
fellen31 marked this conversation as resolved.
Show resolved Hide resolved

input:
tuple val(meta), path(vcf)
Expand Down
11 changes: 11 additions & 0 deletions modules/local/echtvar/encode/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM ubuntu:22.04

USER root

RUN apt-get update && apt-get install -y procps sed && rm -rf /var/lib/apt/lists/*
# install app
COPY echtvar /usr/bin/echtvar

# final configuration
ENV FLASK_APP=echtvar
8 changes: 8 additions & 0 deletions modules/local/echtvar/encode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
This docker was created with the following commands:

```bash
wget https://github.com/brentp/echtvar/releases/download/v0.2.0/echtvar
chmod +x echtvar
docker build . -t fellen31/echtvar:0.2.0
docker push fellen31/echtvar:0.2.0
```
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
49 changes: 7 additions & 42 deletions subworkflows/local/snv_annotation/tests/main.nf.test.snap

Large diffs are not rendered by default.

Loading