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]"
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.
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:
returncodestdout/stderroutputmetrics, parsed from numeric lines in stdoutload_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:
DCCCPY_DCCCCOREenvironment variable.- A vendored binary inside the installed
dcccpywheel. - A binary from
dcccpy-linux-runtime,dcccpy-windows-runtime, ordcccpy-macos-runtime, installed bydcccpy[runtime]or the platform-specific runtime extras. - The local dcccpy cache populated by automatic download.
DCCCcoreonPATH.- Automatic download from GitHub releases, unless disabled.
Useful environment variables:
DCCCPY_DCCCCORE: exact path to aDCCCcoreexecutable.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.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-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.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dcccpy-0.1.5.tar.gz.
File metadata
- Download URL: dcccpy-0.1.5.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5575f8cef36340bcfce0db7b76f36753d162a4a2a5fb5ae135a3ed70422a8a59
|
|
| MD5 |
d625cd97695473ef5cf9284a6a30fab5
|
|
| BLAKE2b-256 |
14813039ceb46295b4304a692217bdb57f39a34eaf278b29334f4035e1a0bbb4
|
File details
Details for the file dcccpy-0.1.5-py3-none-any.whl.
File metadata
- Download URL: dcccpy-0.1.5-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f77814be666f725d74032ae431d62942792884211c0772ea179f43be14f82785
|
|
| MD5 |
982651c7472a80799b98ae37f81698c3
|
|
| BLAKE2b-256 |
02fd70f0db362101a3cc9ccd0b8950f1520318af630ee934212cb1f8cd560d72
|