Skip to content

Commit bda6d61

Browse files
committed
Fixing some broken links in the installation script.
1 parent 829b4ea commit bda6d61

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

JAFFA_stages.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
** Author: Nadia Davidson <nadia.davidson@mcri.edu.au>
77
** Last Update: 30th March 2015
88
********************************************************************************/
9-
VERSION=1.08_dev
9+
VERSION=1.08
1010

1111
codeBase = file(bpipe.Config.config.script).parentFile.absolutePath
1212
load codeBase+"/tools.groovy"

install_linux64.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ commands="bpipe velveth velvetg oases trimmomatic samtools bowtie2 blat dedupe r
1616

1717
#installation method
1818
function bpipe_install {
19-
wget https://github.com/ssadedin/bpipe/releases/download/0.9.9.2/bpipe-0.9.9.2.tar.gz
19+
wget -O bpipe-0.9.9.2.tar.gz https://github.com/ssadedin/bpipe/releases/download/0.9.9.2/bpipe-0.9.9.2.tar.gz
2020
tar -zxvf bpipe-0.9.9.2.tar.gz ; rm bpipe-0.9.9.2.tar.gz
2121
ln -s $PWD/bpipe-0.9.9.2/bin/* $PWD/bin/
2222
}
@@ -30,10 +30,10 @@ function velveth_install {
3030
}
3131

3232
function oases_install {
33-
wget http://www.ebi.ac.uk/~zerbino/oases/oases_0.2.08.tgz
34-
tar -zxvf oases_0.2.08.tgz ; rm oases_0.2.08.tgz
35-
make -C oases_0.2.8/ MAXKMERLENGTH=37 LONGSEQUENCES=1 'VELVET_DIR=../velvet_1.2.10'
36-
ln -s $PWD/oases_0.2.8/oases $PWD/bin/
33+
wget -O oases_0.2.09.tgz https://github.com/dzerbino/oases/archive/0.2.09.tar.gz
34+
tar -zxvf oases_0.2.09.tgz ; rm oases_0.2.09.tgz
35+
make -C oases-0.2.09/ MAXKMERLENGTH=37 LONGSEQUENCES=1 'VELVET_DIR=../velvet_1.2.10'
36+
ln -s $PWD/oases-0.2.09/oases $PWD/bin/
3737
}
3838

3939
function trimmomatic_install {

0 commit comments

Comments
 (0)