Skip to content

broadinstitute/celldega

Folders and files

NameName
Last commit message
Last commit date
Mar 27, 2025
Mar 27, 2025
Mar 25, 2025
Mar 26, 2025
Jan 15, 2025
Jul 8, 2024
Jan 15, 2025
Aug 10, 2024
Jan 15, 2025
Apr 11, 2024
Apr 5, 2024
Aug 8, 2024
Mar 26, 2025
Feb 20, 2025
Mar 21, 2025
Mar 25, 2025
Nov 4, 2024
Apr 8, 2024
Dec 9, 2024
Dec 6, 2024
Nov 26, 2024
Sep 5, 2024
Sep 5, 2024

Repository files navigation

celldega

Documentation

https://broadinstitute.github.io/celldega/

Installation

pip install celldega

Note on VIPS Installation

If running on a new Terra.bio workspace you will need to install vips in a startup script (e.g., startup_script.sh) with the following

#!/bin/bash
apt update
apt install -y libvips
apt install -y libvips-tools
apt install -y libvips-dev

Please see Terra.bio documentation for more information.

Development installation

Create a virtual environment and and install celldega in editable mode with the optional development dependencies:

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"

You then need to install the JavaScript dependencies and run the development server.

npm install
npm run dev

Open example.ipynb in JupyterLab, VS Code, or your favorite editor to start developing. Changes made in js/ will be reflected in the notebook.

PyPI

Increment version in project.toml and

$ hatch build
$ hatch publish

Hatch Development

$ hatch env prune      # Remove old environments
$ hatch env create     # Create a new environment based on pyproject.toml
$ hatch shell          # Activate the new environment

NPM

Increment version in package.json and

$ npm run build
$ npm publish