Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PRESCOTT
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mustafa Tekpinar
PRESCOTT
Commits
e61bdc0c
Commit
e61bdc0c
authored
Jul 20, 2023
by
Mustafa Tekpinar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Dockerfile for v1.4.0
parent
9175fdba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
10 deletions
+26
-10
Dockerfile
Dockerfile
+26
-10
No files found.
Dockerfile
View file @
e61bdc0c
...
@@ -6,10 +6,11 @@ LABEL description="ESGEMME: Evolutionary and Structural Global Epistatic Model f
...
@@ -6,10 +6,11 @@ LABEL description="ESGEMME: Evolutionary and Structural Global Epistatic Model f
ENV
DEBIAN_FRONTEND=noninteractive
ENV
DEBIAN_FRONTEND=noninteractive
WORKDIR
/home/tekpinar/research/lcqb
WORKDIR
/home/tekpinar/research/lcqb
ENV
JET2_PATH=/
home/tekpinar/research/lcqb
/JET2
ENV
JET2_PATH=/
usr/local
/JET2
ENV
ESGEMME_PATH=/home/tekpinar/research/lcqb/ESGEMME
ENV
ESGEMME_PATH=/home/tekpinar/research/lcqb/ESGEMME
COPY
./JET2/ ./JET2/
COPY
./JET2/ /usr/local/JET2
COPY
./naccess2.1.1 ./naccess2.1.1
COPY
./naccess2.1.1 /usr/local/naccess2.1.1
COPY
./ESGEMME/esgemme/esgemme.py ./ESGEMME/esgemme/esgemme.py
COPY
./ESGEMME/esgemme/esgemme.py ./ESGEMME/esgemme/esgemme.py
COPY
./ESGEMME/esgemme/alphabets ./ESGEMME/esgemme/alphabets
COPY
./ESGEMME/esgemme/alphabets ./ESGEMME/esgemme/alphabets
COPY
./ESGEMME/esgemme/__init__.py ./ESGEMME/esgemme/__init__.py
COPY
./ESGEMME/esgemme/__init__.py ./ESGEMME/esgemme/__init__.py
...
@@ -44,6 +45,13 @@ apt-get install -y hmmer && \
...
@@ -44,6 +45,13 @@ apt-get install -y hmmer && \
apt-get install
-y
libboost-all-dev
&&
\
apt-get install
-y
libboost-all-dev
&&
\
apt-get clean
&&
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
apt-get clean
&&
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
###################################################################
###################################################################
#Install naccess2.1.1
WORKDIR
/usr/local/naccess2.1.1
RUN
csh install.scr
WORKDIR
/home/tekpinar/research/lcqb
#Install dssp v.3 because v.4 has some incompatibilites with biotite.
#Install dssp v.3 because v.4 has some incompatibilites with biotite.
RUN
wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip
RUN
wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip
RUN
unzip
-o
master.zip
RUN
unzip
-o
master.zip
...
@@ -67,7 +75,9 @@ ENV PATH="/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/
...
@@ -67,7 +75,9 @@ ENV PATH="/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/
RUN
rm
-f
hhsuite-3.3.0-AVX2-Linux.tar.gz
RUN
rm
-f
hhsuite-3.3.0-AVX2-Linux.tar.gz
WORKDIR
/home/tekpinar/research/lcqb
WORKDIR
/home/tekpinar/research/lcqb
RUN
pip3 install
-e
./ESGEMME/
RUN
sed
-i
s#/home/tekpinar/research/lcqb/JET2/matrix#/usr/local/JET2/matrix#g ./ESGEMME/esgemme/default.conf
RUN
sed
-i
s#/home/tekpinar/research/lcqb/naccess2.1.1/naccess#/usr/local/naccess2.1.1/naccess#g ./ESGEMME/esgemme/default.conf
RUN
pip3 install ./ESGEMME/
RUN
pip3 install
-e
./demust/
RUN
pip3 install
-e
./demust/
RUN
Rscript
-e
'install.packages("seqinr", repos="http://cran.us.r-project.org", dependencies=TRUE)'
RUN
Rscript
-e
'install.packages("seqinr", repos="http://cran.us.r-project.org", dependencies=TRUE)'
...
@@ -86,15 +96,21 @@ RUN pip3 install https://github.com/debbiemarkslab/EVcouplings/archive/develop.z
...
@@ -86,15 +96,21 @@ RUN pip3 install https://github.com/debbiemarkslab/EVcouplings/archive/develop.z
# If run command on M1 Mac with macOS Monterey, you can remove sudo
# If run command on M1 Mac with macOS Monterey, you can remove sudo
# Build command
# Build command
# sudo docker build -t tekpinar/esgemme-docker:v1.
3
.0 .
# sudo docker build -t tekpinar/esgemme-docker:v1.
4
.0 .
# sudo docker login
# sudo docker login
# sudo docker push tekpinar/esgemme-docker:v1.
3
.0
# sudo docker push tekpinar/esgemme-docker:v1.
4
.0
# Pull command on M1 Mac with macOS Monterey
# Pull command on M1 Mac with macOS Monterey
# sudo docker pull tekpinar/esgemme-docker:v1.
3
.0
# sudo docker pull tekpinar/esgemme-docker:v1.
4
.0
# Run commands
# Run commands
# sudo docker run -i -t -v $(pwd) --platform linux/amd64 tekpinar/esgemme-docker:v1.3.0 /bin/bash
# sudo docker run -i -t -v $(pwd) --platform linux/amd64 tekpinar/esgemme-docker:v1.4.0 /bin/bash
# Bind your current folder to a particular folder in docker.
# In this way, you fall into the bash terminal of the docker image.
# docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/lcqb tekpinar/esgemme-docker:v1.4.0
#If you want to use the docker image like an executable file:
# Please note that you must have aliBLAT.fasta and blat-af2.pdb inside your current folder and run this command!
# sudo docker run --rm -v $PWD:/home/tekpinar/research/lcqb tekpinar/esgemme-docker:v1.4.0 esgemme aliBLAT.fasta -r input -f aliBLAT.fasta --pdbfile blat-af2.pdb
# Bind your current folder to a particular folder in docker.
# docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/myexample tekpinar/esgemme-docker:v1.3.0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment