A ChRIS DS plugin to download a set of spleen data
Project description
pl-spleendatads is a ChRIS DS plugin which downloads an exemplar spleen dataset useful for training and inference experiments.
Abstract
This is a simple DS plugin suitable for training and inference on 3D spleen NiFTI volumes, as part of the MONAI spleen segmentation exemplar notebook. DS plugins are suitable as non-root nodes of ChRIS compute trees, i.e. nodes that have a parent node. If you need a root node spleen data origin, use the companion FS spleen data node.
By default, the download is pretty big – 1.2Gb, so make sure you have time and space. It is possible to post-download prune this. For example, if you are only interested in training, you can use a --trainingOnly flag which will prune out the 43Mb of testing NiFTI volumes. Conversely, if you are just interested in inference, the --testingOnly will remove the post download 1.2Gb of training data, saving lots of space.
You still need to download the whole set, however, before you can prune.
Installation
pl-spleendatads is a ChRIS plugin, meaning it can run from either within ChRIS or the command-line.
Local Usage
On the metal
If you have checked out the repo, you can simply run spleendatads using
source venv/bin/activate
pip install -U ./
spleendatads input/ output/
PyPI
Alternatively, you can just do a
pip install spleendatads
to get directly from PyPI.
apptainer
The recommended way is to use Apptainer (a.k.a. Singularity) to run pl-spleendatads as a container:
apptainer exec docker://fnndsc/pl-spleendatads spleendatads [--args values...] input/ output/
To print its available options, run:
apptainer exec docker://fnndsc/pl-spleendatads spleendatads --help
Examples
spleendatads, being a ChRIS DS plugin, requires two positional arguments: an input directory from the upstream parent, and a directory that will contain the output data. Simply create an empty input and output.
mkdir output
apptainer exec docker://fnndsc/pl-spleendatads:latest spleendatads [--args] input/ output/
Development
Instructions for developers.
Building
Build a local container image:
docker build -t localhost/fnndsc/pl-spleendatads .
Running
Mount the source code spleendatads.py into a container to try out changes without rebuild.
docker run --rm -it --userns=host -u $(id -u):$(id -g) \
-v $PWD/spleendatads.py:/usr/local/lib/python3.12/site-packages/spleendatads.py:ro \
-v $PWD/in:/incoming:ro -v $PWD/out:/outgoing:rw -w /outgoing \
localhost/fnndsc/pl-spleendatads spleendatads /incoming /outgoing
Testing
Run unit tests using pytest. It’s recommended to rebuild the image to ensure that sources are up-to-date. Use the option --build-arg extras_require=dev to install extra dependencies for testing.
docker build -t localhost/fnndsc/pl-spleendatads:dev --build-arg extras_require=dev .
docker run --rm -it localhost/fnndsc/pl-spleendatads:dev pytest
Release
Steps for release can be automated by Github Actions. This section is about how to do those steps manually.
Increase Version Number
Increase the version number in setup.py and commit this file.
Push Container Image
Build and push an image tagged by the version. For example, for version 1.2.3:
docker build -t docker.io/fnndsc/pl-spleendatads:1.2.3 . docker push docker.io/fnndsc/pl-spleendatads:1.2.3
Get JSON Representation
Run `chris_plugin_info <https://github.com/FNNDSC/chris_plugin#usage>`__ to produce a JSON description of this plugin, which can be uploaded to ChRIS.
docker run --rm docker.io/fnndsc/pl-spleendatads:1.2.3 chris_plugin_info -d docker.io/fnndsc/pl-spleendatads:1.2.3 > chris_plugin_info.json
Intructions on how to upload the plugin to ChRIS can be found here: https://chrisproject.org/docs/tutorials/upload_plugin
-30-
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file spleendatads-2.0.6.tar.gz
.
File metadata
- Download URL: spleendatads-2.0.6.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2487aa7dc3df5b46390171c2772163a164ee9f599af70126e4c8ccb4c27c11d |
|
MD5 | 2a751728937075dc3e263133966ae21f |
|
BLAKE2b-256 | 30f9fce81ef48d14d1826b8c76586478a33da4e8a7ee0b5d92d07c6212014812 |