diff --git a/CHANGES.md b/CHANGES.md index f30eaa5..f8c75a8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # CHANGES +## 3.2.2 + +* Handle Input files that may have no reads at all, specifically an issue when generating a normal panel. + ## 3.2.1 * Added Dockerfile and docker documentation diff --git a/Dockerfile b/Dockerfile index 21ab336..243d258 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ FROM ubuntu:16.04 LABEL maintainer="cgphelp@sanger.ac.uk" \ uk.ac.sanger.cgp="Cancer, Ageing and Somatic Mutation, Wellcome Trust Sanger Institute" \ - version="v3.2.1" \ + version="v3.2.2" \ description="cgpPindel docker" RUN apt-get -yq update diff --git a/perl/lib/Sanger/CGP/Pindel.pm b/perl/lib/Sanger/CGP/Pindel.pm index 4a300ae..61849c5 100644 --- a/perl/lib/Sanger/CGP/Pindel.pm +++ b/perl/lib/Sanger/CGP/Pindel.pm @@ -26,7 +26,7 @@ use strict; use Const::Fast qw(const); use base 'Exporter'; -our $VERSION = '3.2.1'; +our $VERSION = '3.2.2'; our @EXPORT = qw($VERSION); 1;