Skip to content

Commit

Permalink
Merge branch 'hotfix/v1.13.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Mar 15, 2016
2 parents b33d81c + 445726d commit ab9aa4f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Binary file modified docs.tar.gz
Binary file not shown.
2 changes: 1 addition & 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.13.1';
our $VERSION = '1.13.2';
our @EXPORT = qw($VERSION);

const my $LICENSE =>
Expand Down
4 changes: 4 additions & 0 deletions lib/PCAP/Bwa.pm
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ sub mem_mapmax {
next if($file =~ m/^\./);
next if($file =~ m/^pairedfq2\.[[:digit:]]+/); # captured by 1.*
next if($file =~ m/s[.]fq[.]gz_[[:digit:]]+[.]gz$/);
if($file =~ m/o[12][.]fq[.]gz_[[:digit:]]+[.]gz$/) {
warn "Orphan reads found, your input BAM appears to have had duplicates 'removed' rather than 'marked': $folder/$file\n\tWARNING: This will give a sub-optimal result\n";
next;
}
push @files, File::Spec->catfile($folder, $file);
}
closedir($dh);
Expand Down
2 changes: 1 addition & 1 deletion prerelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cd $MY_PATH

echo '### Running perl tests ###'

export HARNESS_PERL_SWITCHES=-MDevel::Cover=-db,reports,-ignore,'t/.*\.t'
export HARNESS_PERL_SWITCHES=-MDevel::Cover=-db,reports,-select='^lib/*\.pm$',-ignore,'^t/'
rm -rf docs
mkdir -p docs/reports_text
prove --nocolor -w -I ./lib | sed 's/^/ /' # indent output of prove
Expand Down

0 comments on commit ab9aa4f

Please sign in to comment.