Skip to content
Snippets Groups Projects

tophat dockerfile : fix beug and add bowtie1 installation

Merged elabaron requested to merge elabaron/nextflow:master into master
3 files
+ 21
2
Compare changes
  • Side-by-side
  • Inline
Files
3
 
FROM ubuntu:20.04
 
MAINTAINER Emmanuel Labaronne
 
 
ENV RIBOTRICER_VERSION=1.3.2
 
ENV PACKAGES python3\
 
python3-dev\
 
python3-pip
 
 
RUN apt-get update && \
 
apt-get install -y ${PACKAGES} && \
 
apt-get clean
 
 
RUN pip3 install ribotricer==${RIBOTRICER_VERSION}
Loading