Skip to content

Commit

Permalink
specify specific gmap version
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnip committed Nov 4, 2014
1 parent 3901fb0 commit 20da23c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prereqs/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ MAX_KMER:=96

ABYSS_VERSION:=1.5.2
BOWTIE2_VERSION:=2.2.3
GMAP_VERSION:=2014-01-21
IGRAPH_VERSION:=0.7.1
PYTHON_VERSION:=2.7.8
PYSAM_VERSION:=0.7.8
Expand Down Expand Up @@ -86,8 +87,9 @@ bowtie2.COMPLETE: bin
touch $@

gmap.COMPLETE: bin
wget --quiet --no-check-certificate -N http://research-pub.gene.com/gmap/index.html && \
gmap_version=`grep -i -m 1 'latest version' ./index.html |sed -e 's/.*version //g' -e 's/<\/a>//g'` && \
#wget --quiet --no-check-certificate -N http://research-pub.gene.com/gmap/index.html && \
#gmap_version=`grep -i -m 1 'latest version' ./index.html |sed -e 's/.*version //g' -e 's/<\/a>//g'` && \
gmap_version=$(GMAP_VERSION) && \
wget --quiet --no-check-certificate -N http://research-pub.gene.com/gmap/src/gmap-gsnap-$$gmap_version.tar.gz && \
tar -zxf ./gmap-gsnap-$$gmap_version.tar.gz && \
cd ./gmap-$$gmap_version && \
Expand Down

0 comments on commit 20da23c

Please sign in to comment.