File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Dockerfiles/RepeatMasker-onbuild Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 44
55RUN apt-get update && apt-get install -qqy \
66 wget \
7- hmmer
7+ hmmer \
8+ build-essential
89
910# Install TRF
1011WORKDIR /usr/local/bin
1112RUN wget http://tandem.bu.edu/trf/downloads/trf407b.linux64 && mv trf*.linux64 trf && chmod +x trf
1213
13- # Install RMBlast
14+ # Basic workdir
1415WORKDIR /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
1524RUN 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
You can’t perform that action at this time.
0 commit comments