Skip to content

Commit

Permalink
Merge branch 'hotfix/v3.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyMenzies committed Apr 9, 2018
2 parents 9fb12f9 + 238ba1b commit aa224ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES

## 3.3.3

* fixing issue in Admin_CacheFileBuilder.pl where it would fail without the optional fai file

## 3.3.2

* Actually get the new `htslib` and `samtools` links correct in `setup.sh`
Expand Down
4 changes: 3 additions & 1 deletion bin/Admin_CacheFileBuilder.pl
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,9 @@ sub featureOrderSortFunction {
sub checkChromosome {
my ($chr,$chrList) = @_;
my $use_chr = undef;
if(first { $_ eq $chr } @$chrList){
if(!defined $chrList){
$use_chr = $chr;
} elsif (first { $_ eq $chr } @$chrList){
$use_chr = $chr;
} else {
# chromosome not in fai file
Expand Down
Binary file modified docs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/Sanger/CGP/Vagrent.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 = '3.3.2';
our $VERSION = '3.3.3';
our @EXPORT = qw($VERSION);

1;

0 comments on commit aa224ec

Please sign in to comment.