Skip to content

Commit

Permalink
Merge branch 'hotfix/v3.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Jul 16, 2019
2 parents 842c110 + 2b9c671 commit e142055
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ FROM ubuntu:16.04

LABEL maintainer="[email protected]" \
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
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Pindel.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Pindel/OutputGen/BamUtil.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ sub sam_to_sorted_bam {
else {
my $header_from = $sam_files->[0];
$command .= "cd $base_dir; ";
$command .= sprintf q{ (samtools view -H %s ; zcat %s | grep -v '^@' ) | }, $header_from, join q{ }, @{$sam_files};
$command .= sprintf q{ (samtools view -H %s ; zcat %s | grep -v '^@' || true ) | }, $header_from, join q{ }, @{$sam_files};
}

$command .= which('bamsort');
Expand Down

0 comments on commit e142055

Please sign in to comment.