Skip to content

Commit

Permalink
Merge branch 'release/5.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranmraine committed Mar 17, 2021
2 parents 69d082d + 36b2aab commit 4fe6bd5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 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.6.0

* `bwa-mem2` updated to v2.2.1 following successful large scale testing
* [please see here](https://github.com/bwa-mem2/bwa-mem2/issues/109).

## 5.5.1

* `bwa-mem2` increment.
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ 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="9cd69b3f383a5cbb5e47b9e08e4c11392e72a510"
ARG BWAMEM2_GIT="https://github.com/bwa-mem2/bwa-mem2.git"
# accepts tags or commmit ids
ARG BWAMEM2_TAG="v2.2.1"
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 Expand Up @@ -64,7 +66,6 @@ FROM ubuntu:20.04

LABEL maintainer="[email protected]"\
uk.ac.sanger.cgp="Cancer, Ageing and Somatic Mutation, Wellcome Sanger Institute" \
version="5.5.0" \
description="pcap-core"

ENV OPT /opt/wtsi-cgp
Expand Down
2 changes: 1 addition & 1 deletion build/opt-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ fi
## build BWA-mem2 (tar.gz)
if [ ! -e $SETUP_DIR/bwa2.success ]; then
rm -rf distro
git clone --recursive https://github.com/bwa-mem2/bwa-mem2.git distro
git clone --recursive $BWAMEM2_GIT distro
cd distro
git checkout $BWAMEM2_TAG
make -j$CPU multi
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.1';
our $VERSION = '5.6.0';
our @EXPORT = qw($VERSION _which);

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

# 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="9cd69b3f383a5cbb5e47b9e08e4c11392e72a510"
export BWAMEM2_GIT="https://github.com/bwa-mem2/bwa-mem2.git"
# accepts tags or commmit ids
export BWAMEM2_TAG="v2.2.1"
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 4fe6bd5

Please sign in to comment.