diff --git a/CHANGES.md b/CHANGES.md index e7e5f82..227193e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ + +## 1.2.0 +* Added json config paramter to accept filtering paramaters +* removed commandline paramaters that are now read from config file ## 1.1.4 * updated regex to get genename ## 1.1.3 diff --git a/Dockerfile b/Dockerfile index c3dc72b..596ba43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ USER root MAINTAINER cgphelp@sanger.ac.uk -ENV ANNOTATEVCF_VER '1.1.4' +ENV ANNOTATEVCF_VER '1.2.0' # install system tools RUN apt-get -yq update @@ -40,7 +40,7 @@ RUN pip3 install --install-option="--prefix=$CGP_OPT/python-lib" dist/$(ls -1 di FROM ubuntu:20.04 LABEL uk.ac.sanger.cgp="Cancer Genome Project, Wellcome Sanger Institute" \ - version="1.0.0" \ + version="1.2.0" \ description="Tool to perform vcf file annotation" ### security upgrades and cleanup diff --git a/setup.py b/setup.py index 6d2ac4f..8939e02 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup config = { - 'version': '1.1.4', + 'version': '1.2.0', 'name': 'annotateVcf', 'description': 'Tool to annotate and filter vcf files...', 'author': 'Shriram Bhosle',