Created
November 24, 2025 10:40
-
-
Save ATpoint/e3169ae8ed61752bf5a58f39d061c952 to your computer and use it in GitHub Desktop.
Dockerfile to build a Docker image for the split-pipe preprocessing pipeline for Parse scRNA-seq data. Here Parse version 1.6.3 is assumes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Start from Miniconda which already contains conda and an appropriate pipeline version | |
| FROM continuumio/miniconda3:25.3.1-1 | |
| WORKDIR /app | |
| # That is downloaded from Parse which is behind a login for customers | |
| COPY ParseBiosciences-Pipeline.1.6.3.zip . | |
| # The gsub is encessary because inside docker there is no explicit sudo but the Parse script sudos a lot | |
| RUN apt update && apt install -y unzip && \ | |
| unzip ParseBiosciences-Pipeline.1.6.3.zip && \ | |
| cd ParseBiosciences-Pipeline.1.6.3 && \ | |
| awk '{gsub("sudo ", ""); print}' install_dependencies.sh > install_dependencies_root.sh && \ | |
| bash install_dependencies_root.sh -y -i && \ | |
| pip install --no-cache-dir . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment