Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Sep 8, 2016
2 parents 4cb8028 + bc57cd4 commit a750510
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified perl/docs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/Pindel.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 = '2.0.7';
our $VERSION = '2.0.8';
our @EXPORT = qw($VERSION);

1;
2 changes: 1 addition & 1 deletion perl/lib/Sanger/CGP/PindelPostProcessing/FilterRules.pm
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ sub flag_009 {

my $ret = eval{
# as vcf POS for indels is the previous base pos is 0-based, but the new TABIX requires 1-based
my $iter = $main::VCF_IS_CODING_TABIX->query($CHROM,$POS+1,($POS+$MATCH));
my $iter = $main::VCF_IS_CODING_TABIX->query(sprintf '%s:%d-%d', $CHROM,$POS+1,($POS+$MATCH));
return $FAIL if(!defined $iter); # no valid entries (chromosome not in index) so must FAIL
while($iter->next){
return $PASS;
Expand Down

0 comments on commit a750510

Please sign in to comment.