Run labs in container

Instructions on running labs on SciLifeLab Serve or locally in Docker

Note

Three different toolkits, namely Seurat (R/RStudio), Bioconductor (R/RStudio) and Scanpy (Python/Jupyter) are available to perform the scRNAseq analysis. The labs can be run on SciLifeLab Serve or on your local machine using Docker. Both options provide the necessary environment to run the analysis.
If you use SciLifeLab Serve, you do not need any local installation or setup on your system but you need a SciLifeLab Serve account. If you use Docker, you will need to set up and run Docker yourself.

2 Option B: Run Docker Locally

2.1 Local Setup

If you don’t have Docker installed locally, please follow these instructions.

2.2 Images

Separate Docker images are made available for Seurat/Bioconductor and Scanpy toolkits. Below you find an overview of the available docker images. Note the space requirements!

Topic Image Size (GB)
Seurat/Bioconductor ghcr.io/nbisweden/workshop-scrnaseq-seurat:20250320-2311 13.1GB
Scanpy ghcr.io/nbisweden/workshop-scrnaseq-scanpy:20250325-2256 16.9GB

2.3 Seurat/Bioconductor

Tip

To avoid running out of memory, restart R (Session > Restart R) after each lab.

cd /path/to/labs  # replace this with the full path to the workshop compiled lab folder
docker pull --platform=linux/amd64 ghcr.io/nbisweden/workshop-scrnaseq-seurat:20250320-2311
docker run --platform=linux/amd64 --rm -p 8787:8787 -v ${PWD}:/home/jovyan/work ghcr.io/nbisweden/workshop-scrnaseq-seurat:20250320-2311

Do not close the terminal! In the browser, go to localhost:8787.

Inside RStudio, the script download-scripts-lab.sh is provided that will download the corresponding labs. It creates a labs folder with .qmd files. In the terminal, run the commands below:

  • Seurat
conda activate seurat
~/download-labs.sh "https://github.com/NBISweden" "workshop-scRNAseq" "compiled/labs" "seurat" "work/labs"
  • Bioconductor
conda activate seurat
~/download-labs.sh "https://github.com/NBISweden" "workshop-scRNAseq" "compiled/labs" "bioc" "work/labs"

Navigate to /home/jovyan/work/labs/ and open the .qmd files.

2.4 Scanpy

Tip

To avoid running out of memory, restart the kernel (Kernel > Restart Kernel) after each lab.

cd /path/to/labs  # replace this with the full path to the workshop compiled lab folder
docker pull --platform=linux/amd64 ghcr.io/nbisweden/workshop-scrnaseq-scanpy:20250325-2256
docker run --platform=linux/amd64 --rm -p 8888:8888 -v ${PWD}:/home/jovyan/work ghcr.io/nbisweden/workshop-scrnaseq-scanpy:20250325-2256

Do not close the terminal! In the browser, go to localhost:8888. Use the following credentials to log in to the JupyterLab server:

Password: scrnaseq

Inside JupyterLab, the script download-scripts-lab.sh is provided that will download the corresponding labs. It creates a labs folder with .ipynb files. In the terminal, run the commands below:

conda activate scanpy
~/work/download-labs.sh "https://github.com/NBISweden" "workshop-scRNAseq" "compiled/labs" "scanpy" "work/labs"

Navigate to /home/jovyan/work/labs/ and open the .ipynb files.