Skip to content

Commit

Permalink
Change final log output location to prevent clash
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Aug 5, 2015
1 parent ca830ae commit a02c4f6
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.9.1
* Changed final log folder to include sample name and analysis type, prevents clash when lots of data to same output loc.

### 1.9.0
* Fix bugs #52 and #53
* Modified bwa_mem.pl to accept multi-readgroup BAM as input
Expand Down
2 changes: 1 addition & 1 deletion MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@
}
},
"release_status" : "stable",
"version" : "v1.9.0"
"version" : "v1.9.1"
}
2 changes: 1 addition & 1 deletion MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ requires:
Test::Fatal: '0.013'
Try::Tiny: '0.19'
XML::Simple: '2.2'
version: v1.9.0
version: v1.9.1
2 changes: 1 addition & 1 deletion bin/bwa_aln.pl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
sub cleanup {
my $options = shift;
my $tmpdir = $options->{'tmp'};
move(File::Spec->catdir($tmpdir, 'logs'), File::Spec->catdir($options->{'outdir'}, 'logs')) || die $!;
move(File::Spec->catdir($tmpdir, 'logs'), File::Spec->catdir($options->{'outdir'}, 'logs_bwaaln_'.$options->{'sample'})) || die $!;
remove_tree $tmpdir if(-e $tmpdir);
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion bin/bwa_mem.pl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
sub cleanup {
my $options = shift;
my $tmpdir = $options->{'tmp'};
move(File::Spec->catdir($tmpdir, 'logs'), File::Spec->catdir($options->{'outdir'}, 'logs')) || die $!;
move(File::Spec->catdir($tmpdir, 'logs'), File::Spec->catdir($options->{'outdir'}, 'logs_bwamem_'.$options->{'sample'})) || die $!;
remove_tree $tmpdir if(-e $tmpdir);
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion c/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.9.0
VERSION=1.9.1

#Compiler
CC = gcc -O3 -DVERSION='"$(VERSION)"' -g
Expand Down
Binary file modified docs.tar.gz
Binary file not shown.
3 changes: 2 additions & 1 deletion lib/PCAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use strict;
use Const::Fast qw(const);
use base 'Exporter';

our $VERSION = '1.9.0';
our $VERSION = '1.9.1';
our @EXPORT = qw($VERSION);

const my $LICENSE =>
Expand Down Expand Up @@ -69,6 +69,7 @@ const my %UPGRADE_PATH => ( '0.1.0' => 'biobambam,bwa,samtools',
'1.8.1' => '',
'1.8.2' => '',
'1.9.0' => '',
'1.9.1' => '',
);

sub license {
Expand Down

0 comments on commit a02c4f6

Please sign in to comment.