Skip to content

Commit

Permalink
Merge branch 'hotfix/2.1.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jones committed Oct 12, 2017
2 parents 313e37a + c561f81 commit 3bca8c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.1.9
* Fix missed compilation failure

### 2.1.8
* Fix issues with empty output from tophatpost when running tophat_filter

Expand Down
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/CgpRna.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use strict;
use Const::Fast qw(const);
use base 'Exporter';

our $VERSION = '2.1.8';
our $VERSION = '2.1.9';
our @EXPORT = qw($VERSION);

1;
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Tophat/Implement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ sub tophatfusion_post {
PCAP::Threaded::external_process_handler(File::Spec->catdir($tmp, 'logs'), $command, 0);

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

0 comments on commit 3bca8c8

Please sign in to comment.