Skip to content

Commit

Permalink
Merge branch 'hotfix/5.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Dec 10, 2020
2 parents 4ed4ab8 + 44fc72c commit 69d082d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGES

## 5.5.1

* `bwa-mem2` increment.
* `bwa_mem2.pl` correct arg checking to catch failure to provide input files.

## 5.5.0

* Update to bwa-mem2 production release (v2.1)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USER root

# newer gitlab versions do not work
ARG BBB2_URL="https://gitlab.com/german.tischler/biobambam2/uploads/178774a8ece96d2201fcd0b5249884c7/biobambam2-2.0.146-release-20191030105216-x86_64-linux-gnu.tar.xz"
ARG BWAMEM2_TAG="v2.1"
ARG BWAMEM2_TAG="9cd69b3f383a5cbb5e47b9e08e4c11392e72a510"
ARG STADEN="https://iweb.dl.sourceforge.net/project/staden/staden/2.0.0b11/staden-2.0.0b11-2016-linux-x86_64.tar.gz"
ARG VER_BIODBHTS="3.01"
ARG VER_BWA="v0.7.17"
Expand Down
1 change: 1 addition & 0 deletions bin/bwa_mem.pl
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ sub setup {
$opts{'tmp'} = $tmpdir;

my $cwd = cwd();
$opts{'raw_files'} = [];
for(@ARGV) {
$_ = "$cwd/$_" unless($_ =~ m|^/|);
push @{$opts{'raw_files'}}, $_;
Expand Down
3 changes: 2 additions & 1 deletion build/opt-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ fi
## build BWA-mem2 (tar.gz)
if [ ! -e $SETUP_DIR/bwa2.success ]; then
rm -rf distro
git clone --branch v2.1 --recursive --depth 1 https://github.com/bwa-mem2/bwa-mem2.git distro
git clone --recursive https://github.com/bwa-mem2/bwa-mem2.git distro
cd distro
git checkout $BWAMEM2_TAG
make -j$CPU multi
cp bwa-mem2* $INST_PATH/bin/.
cd ../
Expand Down
2 changes: 1 addition & 1 deletion lib/PCAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use FindBin qw($Bin);
use File::Which qw(which);
# don't use autodie, only core perl in here

our $VERSION = '5.5.0';
our $VERSION = '5.5.1';
our @EXPORT = qw($VERSION _which);

const my $LICENSE =>
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# newer gitlab versions do not work
export BBB2_URL="https://gitlab.com/german.tischler/biobambam2/uploads/178774a8ece96d2201fcd0b5249884c7/biobambam2-2.0.146-release-20191030105216-x86_64-linux-gnu.tar.xz"
export BWAMEM2_TAG="v2.1"
export BWAMEM2_TAG="9cd69b3f383a5cbb5e47b9e08e4c11392e72a510"
export STADEN="https://iweb.dl.sourceforge.net/project/staden/staden/2.0.0b11/staden-2.0.0b11-2016-linux-x86_64.tar.gz"
export VER_BIODBHTS="3.01"
export VER_BWA="v0.7.17"
Expand Down

0 comments on commit 69d082d

Please sign in to comment.