From 501969e3e0dca1776c631f7cd24fbf6984f813ce Mon Sep 17 00:00:00 2001 From: seppinho <sebastian.schoenherr@i-med.ac.at> Date: Wed, 21 Feb 2024 10:09:16 +0100 Subject: [PATCH] Prepeare releave v0.4.9 --- README.md | 6 +++--- nextflow.config | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e2e7015..20c3d30 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,13 @@ The pipeline has been applied to the **KIV-2 VNTR** of the **LPA gene** (using a 2) Run the pipeline on a test dataset ``` -nextflow run genepi/vntr-calling-nf -r v0.4.8 -profile test,<docker,singularity> +nextflow run genepi/vntr-calling-nf -r v0.4.9 -profile test,<docker,singularity> ``` 3) Run the pipeline on your data ``` -nextflow run genepi/vntr-calling-nf -c <nextflow.config> -r v0.4.8 -profile <docker,singularity> +nextflow run genepi/vntr-calling-nf -c <nextflow.config> -r v0.4.9 -profile <docker,singularity> ``` ## Parameters @@ -84,7 +84,7 @@ Final VNTR data are available within this repository [here](paper_data/vntrs). ## Development ``` -docker build -t genepi/vntr-caller-nf . # don't ingore the dot here +docker build -t genepi/vntr-calling-nf . # don't ingore the dot here nextflow run main.nf -profile test,development ``` diff --git a/nextflow.config b/nextflow.config index 17f10e0..0c6bea9 100644 --- a/nextflow.config +++ b/nextflow.config @@ -2,7 +2,7 @@ docker.enabled = true manifest { name = 'vntr-calling-nf' - version = '0.4.8' + version = '0.4.9' description = 'Nextflow pipeline to resolve variants in VNTRS from sequencing data' author = 'Sebastian Schönherr' homePage = 'https://github.com/genepi/vntr-calling-nf' @@ -32,7 +32,7 @@ params { } -process.container = 'quay.io/genepi/vntr-calling-nf:v0.4.8' +process.container = 'quay.io/genepi/vntr-calling-nf:v0.4.9' // Load base.config by default for all pipelines