File tree 4 files changed +7
-8
lines changed
4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
FROM continuumio/miniconda3
2
- ENV VERSION 0.2
2
+ ENV VERSION 0.3
3
3
ENV TOOL epidope
4
4
5
5
RUN apt update && apt install -y make g++ procps wget gzip && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
6
6
7
7
RUN conda config --add channels conda-forge && \
8
8
conda config --add channels flomock && \
9
- conda config --add channels pytorch && \
10
9
conda config --add channels default
11
10
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
15
14
16
15
ENTRYPOINT ["epidope" ]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Prediction of B-cell epitopes from amino acid sequences using deep neural networ
16
16
3. Create new repository and install epidope via mamba
17
17
18
18
` ` ` bash
19
- mamba install -c flomock -c conda-forge epidope
19
+ mamba create -n epidope -c flomock -c conda-forge epidope
20
20
` ` `
21
21
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.
22
22
Original file line number Diff line number Diff line change 9
9
path : ../
10
10
11
11
build :
12
- number : 1
12
+ number : 2
13
13
noarch : python
14
14
# script: python setup.py install --single-version-externally-managed --record=record.txt
15
15
script : python -m pip install --no-deps --ignore-installed .
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'EpiDope' ,
9
- version = 0.2 ,
9
+ version = 0.3 ,
10
10
description = "Prediction of B-cell epitopes from amino acid sequences using deep neural networks. " ,
11
11
license = "MIT" ,
12
12
author = "Florian Mock, Maximilian Collatz" ,
You can’t perform that action at this time.
0 commit comments