-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into faster-lookup
- Loading branch information
Showing
410 changed files
with
72,698 additions
and
111,636 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ FROM ubuntu:20.04 | |
|
||
LABEL authors="Laise Florentino ([email protected]), Matthias Blum ([email protected])" | ||
|
||
ARG VERSION=5.69-101.0 | ||
ARG VERSION | ||
ENV TZ=Europe/London | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ | ||
echo $TZ > /etc/timezone && \ | ||
apt-get update -y && \ | ||
apt-get install -y wget python3.8 python2.7 openjdk-11-jre-headless libpcre2-dev libgomp1 perl-doc && \ | ||
apt-get install -y wget python3.8 openjdk-11-jre-headless libpcre2-dev libgomp1 perl-doc libc6-i386 && \ | ||
ln -s /usr/bin/python3.8 /usr/bin/python3 && ln -s /usr/bin/python3.8 /usr/bin/python | ||
|
||
WORKDIR /opt | ||
|
@@ -17,8 +17,15 @@ RUN wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/${VERSION}/alt/interpro | |
wget ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/5/${VERSION}/alt/interproscan-core-${VERSION}.tar.gz.md5 && \ | ||
md5sum -c interproscan-core-${VERSION}.tar.gz.md5 && \ | ||
tar -zxf interproscan-core-${VERSION}.tar.gz && \ | ||
rm interproscan-core-${VERSION}.tar.gz && \ | ||
rm interproscan-core-${VERSION}.tar.gz* && \ | ||
mv /opt/interproscan-${VERSION} /opt/interproscan | ||
|
||
WORKDIR /opt/interproscan | ||
|
||
RUN echo "binary.phobius.pl.path=/opt/interproscan/licensed/phobius/phobius.pl" >> interproscan.properties && \ | ||
echo "binary.signalp.path=/opt/interproscan/licensed/signalp/signalp" >> interproscan.properties && \ | ||
echo "signalp.perl.library.dir=/opt/interproscan/licensed/signalp/lib" >> interproscan.properties && \ | ||
echo "binary.tmhmm.path=/opt/interproscan/licensed/tmhmm/decodeanhmm.Linux_x86_64" >> interproscan.properties && \ | ||
echo "tmhmm.model.path=/opt/interproscan/licensed/tmhmm/TMHMM2.0.model" >> interproscan.properties | ||
|
||
ENTRYPOINT ["bash", "./interproscan.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.