Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sleap.def #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions software/SLEAP/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ Program overview: https://sleap.ai/index.html
| *Type* | **Apptainer** | |
| *OS* | Ubuntu | |
| *Base image* | **condaforge/miniforge3:latest** | *DockerHub* |
| *Updated* | 2024-02-23 | *Andrew Owen* |
| *Last tested on HTC* | - | - |
| *Updated* | 2024-09-27 | *Amber Lim* |
| *Last tested on HTC* | 2024-09-23 | *Amber Lim* |
| *Last tested on HPC* | - | - |
7 changes: 4 additions & 3 deletions software/SLEAP/sleap.def
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ From: condaforge/miniforge3:latest
# Install some shared library requirements
export DEBIAN_FRONTEND=noninteractive
apt update -y
apt install -y ffmpeg libsm6 libxext6
apt install -y ffmpeg libsm6 libxext6 libc6 git

# Install Sleap
mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.3
# Install Sleap from git
git clone https://github.com/talmolab/sleap && cd sleap
mamba env create -f environment.yml -n sleap

# Activate environment when starting container
cat << EOF > $APPTAINER_ENVIRONMENT
Expand Down