Skip to content

Commit

Permalink
Merge branch 'hotfix/3.5.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Jan 10, 2020
2 parents 5355d2a + 9372593 commit 628a58c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes

## 3.5.3

* Fix parsing of subclones file when generating final outputs
* This release points to cancerit fork of core battenberg algorithm [here](https://github.com/cancerit/battenberg/feature/grch38)
* v2.3.1 - faster PCF function

## 3.5.2

* Fix parsing of subclones file during refit

## 3.5.1

* Fix #107, again... solves the problem of Rprofile not being found when container invoked by tools that mess with $HOME
Expand Down
2 changes: 1 addition & 1 deletion Rsupport/setupR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ INST_PATH=$1
BUILD_R=$2

VERSION_ASCAT='2.5.1' # no 'v', not a project archive an artifact
VERSION_BB='v2.3.0' # with 'v', this is a project archive
VERSION_BB='v2.3.1' # with 'v', this is a project archive

CPU=`grep -c ^processor /proc/cpuinfo`
if [ $? -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion perl/bin/battenberg_CN_to_VCF.pl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ BEGIN
while(<$IN_FH>){
my $line = $_;
chomp($line);
next if($line =~ m/^\s*chr/);
next if $line =~ /^\s*chr\tstartpos/;
my ($chr, $start, $end, $mt_cn_maj, $mt_cn_min, $mt_frac, $mt_cn_maj_sec, $mt_cn_min_sec, $mt_frac_sec) = (split('\s+',$line))[0,1,2,7,8,9,10,11,12];

#Fix to work round instances where the major and minor cn
Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Battenberg.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.5.2';
our $VERSION = '3.5.3';
our @EXPORT = qw($VERSION);

1;
Expand Down

0 comments on commit 628a58c

Please sign in to comment.