Skip to content

Commit 3db1cc4

Browse files
authored
Update blast+, Repeatmasker and add RepeatScout
1 parent b7ce34d commit 3db1cc4

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Dockerfiles/RepeatMasker-onbuild/Dockerfile

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,37 @@ MAINTAINER Rob Syme <[email protected]>
44

55
RUN apt-get update && apt-get install -qqy \
66
wget \
7-
hmmer
7+
hmmer \
8+
build-essential
89

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

13-
# Install RMBlast
14+
# Basic workdir
1415
WORKDIR /usr/local
16+
RUN wget http://bix.ucsd.edu/repeatscout/RepeatScout-1.0.5.tar.gz && \
17+
tar -xvf RepeatScout* && \
18+
rm RepeatScout*.tar.gz && \
19+
mv RepeatScout* RepeatScout && \
20+
cd RepeatScout && \
21+
make
22+
23+
# Install RMBlast
1524
RUN wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/rmblast/2.2.28/ncbi-rmblastn-2.2.28-x64-linux.tar.gz && \
1625
tar -xzvf ncbi-rmblastn* && \
1726
rm ncbi-rmblastn*.tar.gz && \
1827
mv ncbi-rmblastn*/bin/rmblastn bin && \
1928
rm -rf ncbi-rmblastn
2029

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

2736
# Install RepeatMasker
28-
RUN wget http://www.repeatmasker.org/RepeatMasker-open-4-0-5.tar.gz && \
37+
RUN wget http://www.repeatmasker.org/RepeatMasker-open-4-0-6.tar.gz && \
2938
tar -xzvf RepeatMasker-open*.tar.gz && \
3039
rm -f RepeatMasker-open*.tar.gz
3140

0 commit comments

Comments
 (0)