Skip to main content

Fast probabilistic Threshold-Free Cluster Enhancement in Python

Project description

pytfce

Fast probabilistic Threshold-Free Cluster Enhancement in Python.

Overview

pytfce is a pure-Python package for probabilistic TFCE (pTFCE) that provides analytical inference on neuroimaging statistical maps without permutation testing. It implements a baseline pTFCE faithful to the original R package (Spisák et al. 2019) and a novel hybrid eTFCE–GRF that combines union-find cluster retrieval with analytical GRF p-values. On real brain data (~2M voxels), pytfce is 73× faster than the R pTFCE package and produces concordant results.

Installation

pip install pytfce

# development install
git clone https://github.com/Don-Yin/pytfce.git
cd pytfce
pip install -e .

Dependencies: NumPy, SciPy, connected-components-3d (installed automatically).

Quick start

import nibabel as nib
from pytfce import ptfce_baseline, ptfce_exact

img = nib.load("zstat1.nii.gz")
Z = img.get_fdata()
mask = Z != 0  # or load a proper brain mask

# --- baseline pTFCE (fast, matches R pTFCE) ---
result = ptfce_baseline(Z, mask)

# --- hybrid eTFCE–GRF (exact cluster retrieval) ---
result = ptfce_exact(Z, mask)

# result keys:
#   result["p"]           — enhanced p-values (3-D array)
#   result["logp"]        — −log10(p) for visualization
#   result["Z_enhanced"]  — enhanced Z-scores
#   result["smoothness"]  — estimated smoothness dict

Variants

Variant Method Speed (2M vox) Best for
ptfce_baseline pTFCE (threshold grid + CCL) ~5 s Standard use, small–medium volumes
ptfce_exact eTFCE–GRF (union-find + GRF) ~84 s Large volumes, finer threshold grids

Both variants use identical GRF p-values and aggregation. The baseline sweeps a threshold grid with connected-component labelling at each level; the hybrid uses a single union-find sweep, which eliminates discretisation error at higher constant computational cost.

Validation

Spatial detection. Phantom study (64³ volume, 80 subjects, 3 embedded blobs). All pTFCE variants achieve Dice = 1.0:

Spatial detection

Runtime. Log-scale comparison across five methods (emulated phantom). Py pTFCE runs in 0.34 s vs 21.7 s for R pTFCE (64× speedup):

Runtime comparison

API reference

Function Description
ptfce_baseline(Z, mask, ...) Baseline pTFCE with LUT-accelerated GRF p-values
ptfce_exact(Z, mask, ...) Hybrid eTFCE–GRF via union-find + analytical GRF
estimate_smoothness(Z, mask) Estimate image smoothness (FWHM) from a Z-score map
estimate_smoothness_from_residuals(Y, X, mask) Estimate smoothness from GLM residuals
fwer_z_threshold(n_resels, alpha) GRF Euler-characteristic FWER Z-threshold
pvox_clust(V, Rd, c, h) P(Z ≥ h | cluster_size = c) via GRF Bayes' rule
aggregate_logpvals_vec(s, delta) Vectorised Q-function for log-probability aggregation

Citation

If you use pytfce in your research, please cite:

@article{pytfce2026,
  author  = {Yin, Don and Chen, Hao},
  title   = {pytfce: {Fast} probabilistic {Threshold-Free Cluster Enhancement}
             in {Python}},
  journal = {Journal of Open Source Software},
  year    = {2026},
  doi     = {10.21105/joss.XXXXX}
}

License

MIT

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

pytfce-0.1.1.tar.gz (33.6 kB view details)

Uploaded Source

Built Distribution

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

pytfce-0.1.1-py3-none-any.whl (34.8 kB view details)

Uploaded Python 3

File details

Details for the file pytfce-0.1.1.tar.gz.

File metadata

  • Download URL: pytfce-0.1.1.tar.gz
  • Upload date:
  • Size: 33.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytfce-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8a4bc94b8d334676e6024be541208c3f302df90d02959b3118e308aad1bb68e8
MD5 616b7acfa22fe13fd50862b096bb5fb7
BLAKE2b-256 5059d656b10518f53994715558ce5f4829e5e75c1dd1b5347038c858d8784135

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytfce-0.1.1.tar.gz:

Publisher: publish.yml on Don-Yin/pytfce

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytfce-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pytfce-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pytfce-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6888323d5563ca6da85de1c420201f7436bf7ea6883483dfbd6f8ed3e92c90e7
MD5 aaf46fe1d34b430cafd8af679c665438
BLAKE2b-256 a62ad432d82be9a355925fdfe80b72d53177d09c804b045f9d4dc5a30bca3312

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytfce-0.1.1-py3-none-any.whl:

Publisher: publish.yml on Don-Yin/pytfce

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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