Skip to content

Commit 0cc22ea

Browse files
Initial commit
0 parents  commit 0cc22ea

File tree

4 files changed

+20097
-0
lines changed

4 files changed

+20097
-0
lines changed

Dockerfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SUPPA
2+
# Usage: python3 ${suppa}/suppa.py [SUBCOMMAND] [OPTIONS]
3+
# For instance, python3 suppa.py generateEvents
4+
5+
FROM ubuntu:16.10
6+
MAINTAINER Nuno Agostinho <nunodanielagostinho@gmail.com>
7+
8+
RUN apt-get update
9+
10+
COPY get-pip.py .
11+
RUN apt-get install -y python3
12+
RUN python3 get-pip.py
13+
RUN rm get-pip.py
14+
15+
RUN pip3 install --upgrade pip
16+
RUN pip3 install numpy
17+
RUN pip3 install scipy
18+
RUN pip3 install pandas
19+
RUN pip3 install statsmodels
20+
RUN pip3 install scikit-learn
21+
22+
ENV SW=/root/software
23+
WORKDIR ${SW}
24+
25+
ENV suppa_version=suppa-2.1
26+
ENV suppa=${SW}/${suppa_version}
27+
ADD ${suppa_version}.tar.bz2 ${SW}

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SUPPA (Docker)
2+
Docker to run splicing analysis using SUPPA
3+
4+
## Available software
5+
- [SUPPA](https://github.com/comprna/SUPPA) 2.1 (run using `python3 ${suppa}/suppa.py`)
6+
- [python 3](https://python.org)
7+
8+
## Maintainer
9+
[Nuno Agostinho](mailto:nunodanielagostinho@gmail.com) - [Nuno Morais Lab](http://imm.medicina.ulisboa.pt/group/compbio/), iMM (2017)

0 commit comments

Comments
 (0)