Skip to content

Commit 3bca8c8

Browse files
author
David Jones
committed
Merge branch 'hotfix/2.1.9'
2 parents 313e37a + c561f81 commit 3bca8c8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 2.1.9
2+
* Fix missed compilation failure
3+
14
### 2.1.8
25
* Fix issues with empty output from tophatpost when running tophat_filter
36

perl/lib/Sanger/CGP/CgpRna.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use strict;
3636
use Const::Fast qw(const);
3737
use base 'Exporter';
3838

39-
our $VERSION = '2.1.8';
39+
our $VERSION = '2.1.9';
4040
our @EXPORT = qw($VERSION);
4141

4242
1;

perl/lib/Sanger/CGP/Tophat/Implement.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ sub tophatfusion_post {
536536
PCAP::Threaded::external_process_handler(File::Spec->catdir($tmp, 'logs'), $command, 0);
537537

538538
#If the output is empty, ensure that it passes further checks by adding ##EOF## to the file.
539-
$output_post = $post_rundir.'/result.txt';
539+
my $output_post = $post_rundir.'/result.txt';
540540
if(-s $output_post == 0){
541541
system("echo '##EOF##' > $output_post") && die "An error occurred: $!";
542542
}

0 commit comments

Comments
 (0)