diff --git a/.github/workflows/download_pipeline.yml b/.github/workflows/download_pipeline.yml
index 3c7ee491..be6708bb 100644
--- a/.github/workflows/download_pipeline.yml
+++ b/.github/workflows/download_pipeline.yml
@@ -72,4 +72,4 @@ jobs:
env:
NXF_SINGULARITY_CACHEDIR: ./
NXF_SINGULARITY_HOME_MOUNT: true
- run: nextflow run ./${{ env.REPOTITLE_LOWERCASE }}/$( sed 's/\W/_/g' <<< ${{ env.REPO_BRANCH }}) -stub -profile test,singularity --outdir ./results
+ run: nextflow run ./${{ env.REPOTITLE_LOWERCASE }}/$( sed 's/\W/_/g' <<< ${{ env.REPO_BRANCH }}) --skip_drop_as true --skip_drop_ae true -stub -profile test,singularity --outdir ./results
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c79f1b23..dae2365c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,7 +14,7 @@ Parameter has been added if just the new parameter information is present.
Parameter has been removed if new parameter information isn't present.
:::
-## 2.0.1 - [XXXX-XX-XX]
+## 2.0.2 - [XXXX-XX-XX]
### `Added`
@@ -22,6 +22,16 @@ Parameter has been removed if new parameter information isn't present.
### `Parameters`
+## 2.0.1 - Grinch [2024-04-25]
+
+### `Added`
+
+### `Fixed`
+
+- Vep annotated research results will be published [#115](https://github.com/genomic-medicine-sweden/tomte/pull/115)
+
+### `Parameters`
+
## 2.0.0 - Santa [2024-04-19]
### `Added`
diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml
index b306e44f..e893d670 100644
--- a/assets/multiqc_config.yml
+++ b/assets/multiqc_config.yml
@@ -1,5 +1,5 @@
report_comment: >
- This report has been generated by the genomic-medicine-sweden/tomte
+ This report has been generated by the genomic-medicine-sweden/tomte
analysis pipeline. For information about how to interpret these results, please see the
documentation.
report_section_order:
diff --git a/conf/modules/annotate_snv.config b/conf/modules/annotate_snv.config
index 7ca1ea31..841769b7 100644
--- a/conf/modules/annotate_snv.config
+++ b/conf/modules/annotate_snv.config
@@ -41,6 +41,11 @@ process {
withName: '.*ANNOTATE_SNV:RENAME_FILES' {
ext.when = { (!params.skip_vep) }
ext.prefix = { "${meta.id}_vep_${meta.set}" }
+ publishDir = [
+ path: { "${params.outdir}/annotate_vep" },
+ mode: params.publish_dir_mode,
+ saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
+ ]
}
withName: '.*ANNOTATE_SNV:TABIX_TABIX' {
diff --git a/nextflow.config b/nextflow.config
index 7d348231..d0217531 100644
--- a/nextflow.config
+++ b/nextflow.config
@@ -270,7 +270,7 @@ manifest {
description = """Pipeline to analyse RNAseq from raredisease patients"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
- version = '2.0.0'
+ version = '2.0.1'
doi = '10.5281/zenodo.10828946'
}