Skip to content
This repository was archived by the owner on Oct 2, 2020. It is now read-only.

Commit 1ddeb38

Browse files
committed
add Dockerfile
1 parent 5f6166e commit 1ddeb38

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

tools/pRESTO/.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.cwl

tools/pRESTO/.keep

Whitespace-only changes.

tools/pRESTO/Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM debian:testing
2+
RUN apt-get -y update && apt-get install -y --no-install-recommends \
3+
muscle \
4+
vsearch \
5+
python-biopython \
6+
python-numpy \
7+
python-scipy \
8+
python-numpy \
9+
python-pandas \
10+
curl \
11+
&& apt-get clean \
12+
&& rm -rf /var/lib/apt/lists/*
13+
ENV p_MAJOR=0
14+
ENV p_MINOR=4
15+
ENV p_PATCH=8
16+
ENV p_ARCHIVE=pRESTO_v${p_MAJOR}.${p_MINOR}.${p_PATCH}.tar.gz
17+
RUN curl -SL \
18+
"http://clip.med.yale.edu/presto/downloadHelper.php?dbTable=presto&downloadFile=${p_ARCHIVE}" \
19+
| tar xzC /usr/local

0 commit comments

Comments
 (0)