Skip to content

Commit

Permalink
Update blast+, Repeatmasker and add RepeatScout
Browse files Browse the repository at this point in the history
  • Loading branch information
robsyme authored Nov 25, 2016
1 parent b7ce34d commit 3db1cc4
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions Dockerfiles/RepeatMasker-onbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,37 @@ MAINTAINER Rob Syme <[email protected]>

RUN apt-get update && apt-get install -qqy \
wget \
hmmer
hmmer \
build-essential

# Install TRF
WORKDIR /usr/local/bin
RUN wget http://tandem.bu.edu/trf/downloads/trf407b.linux64 && mv trf*.linux64 trf && chmod +x trf

# Install RMBlast
# Basic workdir
WORKDIR /usr/local
RUN wget http://bix.ucsd.edu/repeatscout/RepeatScout-1.0.5.tar.gz && \
tar -xvf RepeatScout* && \
rm RepeatScout*.tar.gz && \
mv RepeatScout* RepeatScout && \
cd RepeatScout && \
make

# Install RMBlast
RUN wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/rmblast/2.2.28/ncbi-rmblastn-2.2.28-x64-linux.tar.gz && \
tar -xzvf ncbi-rmblastn* && \
rm ncbi-rmblastn*.tar.gz && \
mv ncbi-rmblastn*/bin/rmblastn bin && \
rm -rf ncbi-rmblastn

# Install Blast+
RUN wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.29/ncbi-blast-2.2.29+-x64-linux.tar.gz && \
RUN wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.31/ncbi-blast-2.2.31+-x64-linux.tar.gz && \
tar -xzvf ncbi-blast* && \
find ncbi-blast* -type f -executable -exec mv {} bin \; && \
rm -rf ncbi-blast*

# Install RepeatMasker
RUN wget http://www.repeatmasker.org/RepeatMasker-open-4-0-5.tar.gz && \
RUN wget http://www.repeatmasker.org/RepeatMasker-open-4-0-6.tar.gz && \
tar -xzvf RepeatMasker-open*.tar.gz && \
rm -f RepeatMasker-open*.tar.gz

Expand Down

0 comments on commit 3db1cc4

Please sign in to comment.