Skip to content

Commit 3eb84f9

Browse files
committedJul 20, 2021
update docker file and Readme
1 parent d2b8bb9 commit 3eb84f9

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed
 

‎Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
FROM continuumio/miniconda3
2-
ENV VERSION 0.2
2+
ENV VERSION 0.3
33
ENV TOOL epidope
44

55
RUN apt update && apt install -y make g++ procps wget gzip && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
66

77
RUN conda config --add channels conda-forge && \
88
conda config --add channels flomock && \
9-
conda config --add channels pytorch && \
109
conda config --add channels default
1110

12-
RUN conda install -y python=3.7 pip $TOOL=$VERSION h5py=2.10 jsonnet && conda clean -a
13-
RUN pip install allennlp==0.9.0
14-
RUN pip install docutils==0.15
11+
RUN conda install mamba
12+
RUN mamba install -y python=3.6 $TOOL=$VERSION
13+
RUN mamba clean -ay
1514

1615
ENTRYPOINT ["epidope"]

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Prediction of B-cell epitopes from amino acid sequences using deep neural networ
1616
3. Create new repository and install epidope via mamba
1717

1818
```bash
19-
mamba install -c flomock -c conda-forge epidope
19+
mamba create -n epidope -c flomock -c conda-forge epidope
2020
```
2121
Note: While installation the loading bar of EpiDope may not work. So depending on your internet connection, it can take from a few seconds too minutes until you see any progress.
2222

‎conda.recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ source:
99
path: ../
1010

1111
build:
12-
number: 1
12+
number: 2
1313
noarch: python
1414
# script: python setup.py install --single-version-externally-managed --record=record.txt
1515
script: python -m pip install --no-deps --ignore-installed .

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='EpiDope',
9-
version=0.2,
9+
version=0.3,
1010
description="Prediction of B-cell epitopes from amino acid sequences using deep neural networks. ",
1111
license="MIT",
1212
author="Florian Mock, Maximilian Collatz",

0 commit comments

Comments
 (0)
Please sign in to comment.