File tree Expand file tree Collapse file tree 4 files changed +20097
-0
lines changed
Expand file tree Collapse file tree 4 files changed +20097
-0
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments