Skip to content

Commit b720b53

Browse files
committed
Merge tag 'v6.3.2' into dev
FInliase fix to deploy following CI checks
2 parents 3d8c4ed + cf9b3b0 commit b720b53

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes
22

3+
## v6.3.2
4+
5+
* Fix edgecase on RG line handling (#99)
6+
* Ensure attempt to run on completion give exit==0 (#98)
7+
38
## v6.3.1
49

510
* Handle undefined value edge case #95.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ FROM ubuntu:16.04
6969

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

7575
RUN apt-get -yq update \

perl/bin/brass.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ sub setup {
298298
my $final_logs = File::Spec->catdir($opts{'outdir'}, 'logs');
299299
if(-e $intermediates && -e $final_logs) {
300300
warn "NOTE: Presence of intermediates.tar.gz and final logs directories suggests successful complete analysis, please delete to proceed: $intermediates\n";
301-
exit 1;
301+
exit 0; # don't cause failure
302302
}
303303

304304
# now safe to apply defaults

perl/bin/brassI_prep_bam.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ sub process_header {
141141
$count_in_bam++;
142142
my $rg_id = 0;
143143
$rg_id = $1 if($row =~ /\tID:([^\t]+)/);
144+
chomp $rg_id;
144145

145146
# die horribly if RG ids don't match
146147
unless (defined $bas_ob->get($rg_id, 'readgroup')) { die "Readgroup $rg_id in bam file but not in bas file $!"; }

perl/lib/Bio/Brass.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ our @EXPORT = qw(find_breakpoints find_dusty_vertices
4646
is_dusty get_isolated_bp_alignment get_isolated_bp_surrounding_region
4747
$VERSION);
4848

49-
our $VERSION = '6.3.1';
49+
our $VERSION = '6.3.2';
5050

5151
=head1 NAME
5252

0 commit comments

Comments
 (0)