Skip to main content

Python wrapper for the DCCCcore PET biomarker command-line tool

Project description

dcccpy

dcccpy is a Python wrapper for the DCCCcore command-line tool from DCCCSlicer. It keeps the native C++ core as the execution engine and provides a small Python API for running common PET biomarker workflows.

Install

The default package is slim:

pip install dcccpy

The first call downloads the matching DCCCcore release package into the local user cache if no native runtime is otherwise available. The slim package also installs nibabel for image loading and nibabel-style image inputs.

The downloaded GitHub release is the full DCCCcore runtime. The optional PyPI runtime wheels are smaller and omit the fast_and_acc registration model/config and ADAD decoupler ONNX ensemble.

Users who prefer pip install to include the native runtime and avoid first-run download can use the platform-selecting runtime extra:

pip install "dcccpy[runtime]"

Platform-specific runtime extras are also available:

pip install "dcccpy[linux-runtime]"
pip install "dcccpy[windows-runtime]"

The platform-specific extras are guarded by environment markers, so they only install a runtime wheel on the matching platform.

Python API

import dcccpy

result = dcccpy.centiloid("amyloid_pet.nii", skip_normalization=True)
print(result.metrics)
print(result.output)

The output argument is optional for single-image Python calls. When omitted, dcccpy creates a temporary output NIfTI path and returns it in the result. Relative input and output paths are resolved from the current Python working directory before DCCCcore is invoked.

result = dcccpy.centiloid("amyloid_pet.nii")
print(result.output)           # temporary output path
print(result.metrics.get("fbp"))

The wrapper accepts nibabel-style image objects with to_filename():

import nibabel as nib
import dcccpy

image = nib.load("amyloid_pet.nii.gz")
result = dcccpy.centiloid(image, skip_normalization=True)
output_image = result.load_output()

Common helpers mirror DCCCcore subcommands:

dcccpy.centiloid("amyloid.nii", suvr=True)
dcccpy.centaurz("tau.nii", report_detailed_regions=True)
dcccpy.fillstates("fdg.nii", tracer="fdg")
dcccpy.normalize("pet.nii", iterative=True)
dcccpy.run(["centiloid", "--input", "a.nii", "--output", "b.nii"])

Each helper returns DCCCResult with:

  • returncode
  • stdout / stderr
  • output
  • metrics, parsed from numeric lines in stdout
  • load_output(), which loads the output with nibabel

Command Line

dcccpy also forwards raw arguments to DCCCcore:

dcccpy --help
dcccpy centiloid --input amyloid_pet.nii --output result.nii

Runtime lookup

At runtime, dcccpy looks for DCCCcore in this order:

  1. DCCCPY_DCCCCORE environment variable.
  2. A vendored binary inside the installed dcccpy wheel.
  3. A binary from dcccpy-linux-runtime or dcccpy-windows-runtime, installed by dcccpy[runtime] or the platform-specific runtime extras.
  4. The local dcccpy cache populated by automatic download.
  5. DCCCcore on PATH.
  6. Automatic download from GitHub releases, unless disabled.

Useful environment variables:

  • DCCCPY_DCCCCORE: exact path to a DCCCcore executable.
  • DCCCPY_AUTO_DOWNLOAD=0: disable first-run automatic download.
  • DCCCPY_CACHE_DIR: override the runtime cache directory.
  • DCCCPY_RELEASE_REPO: override the GitHub release repository.
  • DCCCPY_DCCCCORE_URL: override the release asset URL.

Runtime Packaging

Release wheels should vendor the matching DCCCcore runtime tree before build:

python scripts/vendor_dccccore.py --version 4.2.3 --release-platform ubuntu-latest-x64
python -m build --wheel

The source tree intentionally does not commit the vendored runtime because it contains large ONNX model and NIfTI runtime assets.

The preferred distribution layout is:

  • dcccpy: slim Python package with nibabel; downloads runtime on first use.
  • dcccpy-linux-runtime: optional Linux runtime wheel.
  • dcccpy-windows-runtime: optional Windows runtime wheel.
  • dcccpy[runtime]: installs the matching runtime package on supported platforms.

Packaging note

The runtime wheels use a PyPI-size profile for version 4.2.3. They omit the fast_and_acc registration model/config and the ADAD decoupler ONNX ensemble, while keeping the default spatial normalization model and assets needed by common Centiloid/CenTauR/CenTauRz workflows.

The plain dcccpy package remains slim and downloads the full matching DCCCcore release package from GitHub on first use when no installed runtime is available.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dcccpy-0.1.3.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dcccpy-0.1.3-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file dcccpy-0.1.3.tar.gz.

File metadata

  • Download URL: dcccpy-0.1.3.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for dcccpy-0.1.3.tar.gz
Algorithm Hash digest
SHA256 6c6fde0a5ab15194e9601932e700e738a12eadfd2477ed4ec7d94e68ddd47a5a
MD5 ac26daf2d445ff305b32e61483f6bab7
BLAKE2b-256 2e9f0aff53f4be13449797967b6a83f8d656dc117b8860a572238d74c46dc5ba

See more details on using hashes here.

File details

Details for the file dcccpy-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: dcccpy-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for dcccpy-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8db07965c36f16ad6ed00a50291e3c2d11e44bfe51bc60718f2f2957ba338e0e
MD5 abd7b5818e66960df7db16ef4d51a489
BLAKE2b-256 95b16db3429f72c1e36b4b551a513914926d78b3551d6008289dc480cd283cef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page