Skip to content

Commit

Permalink
Merge branch 'hotfix/v6.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Jun 26, 2020
2 parents 9e3df5e + 7d47fb0 commit cf9b3b0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## v6.3.2

* Fix edgecase on RG line handling (#99)
* Ensure attempt to run on completion give exit==0 (#98)

## v6.3.1

* Handle undefined value edge case #95.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ FROM ubuntu:16.04

LABEL maintainer="[email protected]" \
uk.ac.sanger.cgp="Cancer, Ageing and Somatic Mutation, Wellcome Trust Sanger Institute" \
version="v6.2.2" \
version="v6.3.2" \
description="BRASS docker"

RUN apt-get -yq update \
Expand Down
2 changes: 1 addition & 1 deletion perl/bin/brass.pl
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ sub setup {
my $final_logs = File::Spec->catdir($opts{'outdir'}, 'logs');
if(-e $intermediates && -e $final_logs) {
warn "NOTE: Presence of intermediates.tar.gz and final logs directories suggests successful complete analysis, please delete to proceed: $intermediates\n";
exit 1;
exit 0; # don't cause failure
}

# now safe to apply defaults
Expand Down
1 change: 1 addition & 0 deletions perl/bin/brassI_prep_bam.pl
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ sub process_header {
$count_in_bam++;
my $rg_id = 0;
$rg_id = $1 if($row =~ /\tID:([^\t]+)/);
chomp $rg_id;

# die horribly if RG ids don't match
unless (defined $bas_ob->get($rg_id, 'readgroup')) { die "Readgroup $rg_id in bam file but not in bas file $!"; }
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Bio/Brass.pm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ our @EXPORT = qw(find_breakpoints find_dusty_vertices
is_dusty get_isolated_bp_alignment get_isolated_bp_surrounding_region
$VERSION);

our $VERSION = '6.3.1';
our $VERSION = '6.3.2';

=head1 NAME
Expand Down

0 comments on commit cf9b3b0

Please sign in to comment.