Skip to content

Commit

Permalink
travis: update samtools and megahit
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann committed Mar 13, 2020
1 parent e56e7f8 commit 04ea898
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .travis/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ WGET="wget --quiet"
MAKE="make --silent -j"
UNTAR="tar xf"

SAMTOOLSVER=1.9
SAMTOOLSVER=1.10
SAMTOOLS=samtools-$SAMTOOLSVER
echo "* $SAMTOOLS"
$WGET https://github.com/samtools/samtools/releases/download/$SAMTOOLSVER/$SAMTOOLS.tar.bz2
$UNTAR $SAMTOOLS.tar.bz2
(cd $SAMTOOLS && ./configure --prefix=$HERE/$SAMTOOLS && $MAKE install)
PATH=$HERE/$SAMTOOLS/bin:$PATH

$WGET https://raw.githubusercontent.com/tseemann/samclip/master/samclip
chmod +x samclip
mv samclip $HERE/$SAMTOOLS/bin
SAMCLIP=samclip
echo "* $SAMCLIP"
$WGET https://raw.githubusercontent.com/tseemann/$SAMCLIP/master/$SAMCLIP
chmod +x $SAMCLIP
mv $SAMCLIP $HERE/$SAMTOOLS/bin

BWAVER=0.7.17
BWA=bwa-$BWAVER
Expand Down Expand Up @@ -52,8 +54,9 @@ $WGET -O $SKESA/skesa https://ftp.ncbi.nlm.nih.gov/pub/agarwala/skesa/skesa.cent
chmod +x $SKESA/skesa
PATH=$HERE/$SKESA:$PATH

MEGAHITVER=1.1.3
MEGAHIT=megahit_v${MEGAHITVER}_LINUX_CPUONLY_x86_64-bin
#https://github.com/voutcn/megahit/releases/download/v1.2.9/MEGAHIT-1.2.9-Linux-x86_64-static.tar.gz
MEGAHITVER=1.2.9
MEGAHIT=MEGAHIT-${MEGAHITVER}-Linux-x86_64-static
MEGAHITTAR=$MEGAHIT.tar.gz
echo "* $MEGAHIT"
$WGET https://github.com/voutcn/megahit/releases/download/v$MEGAHITVER/$MEGAHITTAR
Expand Down

0 comments on commit 04ea898

Please sign in to comment.