File tree 1 file changed +9
-8
lines changed
session_ml/DeepLearningDataIntegration
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,15 @@ USER root
14
14
RUN apt-get update && apt-get install curl -y --no-install-recommends && \
15
15
apt-get clean && rm -rf /var/lib/apt/lists/*
16
16
17
- # Clone the repository and checkout only .txt files from the DeepLearningDataIntegration folder
18
- RUN git clone --depth=1 --filter=blob:none --sparse https://github.com/NBISweden/workshop_omics_integration.git /tmp/repo && \
19
- cd /tmp/repo && \
20
- git sparse-checkout init --cone && \
21
- git sparse-checkout set session_ml/DeepLearningDataIntegration && \
22
- find session_ml/DeepLearningDataIntegration -name "*.txt" -exec mv {} /home/jovyan/lab/data/ \; && \
23
- rm -rf /tmp/repo
24
-
17
+ # Create data directory
18
+ RUN mkdir -p /home/jovyan/lab/data
19
+
20
+ # Download specific .txt files from GitHub
21
+ RUN curl -L https://github.com/NBISweden/workshop_omics_integration/blob/main/session_ml/DeepLearningDataIntegration/scATACseq.txt -o /home/jovyan/lab/data/scATACseq.txt && \
22
+ curl -L https://github.com/NBISweden/workshop_omics_integration/blob/main/session_ml/DeepLearningDataIntegration/scBSseq.txt -o /home/jovyan/lab/data/scBSseq.txt && \
23
+ curl -L https://github.com/NBISweden/workshop_omics_integration/blob/main/session_ml/DeepLearningDataIntegration/scRNAseq.txt -o /home/jovyan/lab/data/scRNAseq.txt && \
24
+ curl -L https://github.com/NBISweden/workshop_omics_integration/blob/main/session_ml/DeepLearningDataIntegration/scRNAseq.txt -o /home/jovyan/lab/data/scRNAseq_CITEseq.txt
25
+
25
26
# Install pip requirements as root
26
27
RUN pip install --no-cache-dir -r /tmp/requirements.txt
27
28
You can’t perform that action at this time.
0 commit comments