zoark0

bcl2fastq container

Jan 14th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. FROM continuumio/miniconda3
  2.  
  3. # Install python
  4. RUN conda create -n env python=3.9
  5. RUN echo "source activate env" > ~/.bashrc
  6. ENV PATH /opt/conda/envs/env/bin:$PATH
  7.  
  8. # Copy files from current directory into container
  9. COPY ./bcl2fastq.py .
  10. COPY ./setup.py .
  11.  
  12. # Installation
  13. RUN python setup.py install
Advertisement
Add Comment
Please, Sign In to add comment