Skip to main content

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]"
pip install "dcccpy[macos-runtime]"

The platform-specific extras are guarded by environment markers, so they only install a runtime wheel on the matching platform. Linux x86_64 uses dcccpy-linux-runtime; Linux aarch64 (including NVIDIA DGX Spark) uses dcccpy-linux-arm64-runtime.

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, dcccpy-linux-arm64-runtime, dcccpy-windows-runtime, or dcccpy-macos-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.

macOS Gatekeeper

On macOS, downloaded command-line executables may be blocked by Gatekeeper until the user explicitly allows them. If DCCCcore fails to start with an error such as "Operation not permitted" or "developer cannot be verified", dcccpy prints a hint with the exact runtime path.

You can allow the runtime from System Settings > Privacy & Security, or remove the quarantine flag in Terminal:

xattr -dr com.apple.quarantine /path/to/DCCCcore

Run the same command for the path shown in the dcccpy error message, then run the calculation again.

Runtime Packaging

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

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

The Linux ARM64 runtime package uses the corresponding release asset:

cd python/dcccpy-linux-arm64-runtime
python scripts/vendor_dccccore.py --version 4.2.4 --release-platform ubuntu-latest-arm64
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-linux-arm64-runtime: optional Linux aarch64 runtime wheel.
  • dcccpy-windows-runtime: optional Windows runtime wheel.
  • dcccpy-macos-runtime: optional macOS arm64 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.

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.6.tar.gz (16.1 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.6-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dcccpy-0.1.6.tar.gz
  • Upload date:
  • Size: 16.1 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.6.tar.gz
Algorithm Hash digest
SHA256 abdcaf7ff6178b92a6902dd950808741ebe277140df005daec70cc792f3d88ef
MD5 ed2289e11f830def04fa15ac45a0f725
BLAKE2b-256 6fbc5c5189a087adfb2e82b596f9336a16957173829cd75cf8ca9b6003a91886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dcccpy-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 10.8 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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 5f2056ece6ed84e1dbf19809b899e06ef515b8158c1cd9ae71c836ae3a4c1811
MD5 7c94ca90d4b2a29734d8162f19726623
BLAKE2b-256 1c2c4afb0084f3b1303ae443597651abbc39a2ff1b10702351be86746b68ca3e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.6 This release

2 files

0.1.5

2 files

0.1.3

2 files

0.1.2

2 files

Supported by

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