File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu
1
+ FROM ubuntu
2
2
3
- RUN apt-get update && apt-get install -y python wget samtools tabix python-pip python-dev zlib1g-dev
4
- RUN pip install pysam
3
+ RUN apt-get update && apt-get install -y python wget samtools tabix python-pip python-dev zlib1g-dev
4
+ RUN pip install pysam
5
5
6
- RUN mkdir /opt/bin
7
- RUN wget -O /opt/bin/MuSEv1.0rc http://bioinformatics.mdanderson.org/Software/MuSE/MuSEv1.0rc_submission_c039ffa
8
- RUN chmod +x /opt/bin/MuSE*
9
- ADD ./muse.py /opt/bin/
6
+ RUN mkdir /opt/bin
7
+ RUN wget -O /opt/bin/MuSEv1.0rc http://bioinformatics.mdanderson.org/Software/MuSE/MuSEv1.0rc_submission_c039ffa
8
+ RUN chmod +x /opt/bin/MuSE*
9
+ ADD ./muse.py /opt/bin/
10
10
11
11
# Set WORKDIR to /data -- predefined mount location.
12
12
RUN mkdir /data
13
13
WORKDIR /data
14
14
15
- ENV PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/bin
15
+ ENV PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/bin
16
16
17
17
# And clean up
18
- RUN apt-get clean && rm -rf /var/lib/apt/lists/*
18
+ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
19
19
20
20
ENTRYPOINT ["python" , "/opt/bin/muse.py" ]
Original file line number Diff line number Diff line change @@ -196,4 +196,3 @@ def reown(args):
196
196
args = parser .parse_args ()
197
197
args .muse = 'MuSEv1.0rc'
198
198
run_muse (args )
199
-
You can’t perform that action at this time.
0 commit comments