Unsupervised ranging, ion identification, and composition for atom probe tomography mass spectra
Project description
Rangefinder
Automated ranging, species identification, and composition for atom probe
tomography (APT) mass spectra. Rangefinder goes from an APT event list
(.pos/.epos, represented internally by reconstructed positions and m/z) to
ranged peaks, identified positive ionic species, and isotope-resolved composition
— with no user-supplied ranges, no candidate element list, no interactive
tuning, and no manual curation.
It is deterministic (operator variance is exactly zero), pure Python (NumPy/SciPy/pandas), and ships its own benchmark harness against the open-source APT ecosystem.
Scope
Rangefinder is an APT-specific end-to-end system, not a general-purpose mass spectrometry or spectroscopy toolkit. Its physical and chemical model assumes:
- event-level, one-dimensional time-of-flight m/z data;
- positive atomic and small molecular ions typical of field evaporation;
- APT-like peak widths and one-sided thermal tails;
- natural-isotope family patterns, APT charge-state priors, and elemental atomic percent as the final quantity; and
- reconstructed
x_nm,y_nm, andz_nmcoordinates for the public pipeline data model and optional spatial analyses.
The histogramming, local peak detection, centroid refinement, and area-integration code is potentially reusable for other one-dimensional TOF mass spectra after adaptation and domain-specific validation. The MassBank and ToF-SIMS studies in this repository test that detector only. They do not validate Rangefinder's species assignment or composition outside APT; the benchmark adapters convert profile/centroid data to pseudo-events and disable APT family-assignment features.
Rangefinder does not currently model negative-ion assignment, adduct and fragment chemistry, tandem MS, chromatography or ion mobility, arbitrary profile/centroid inputs, instrument-pluggable resolution models, or non-mass-spectrometry axes. For those use cases, use a domain-specific toolkit or extract and validate only the low-level detector.
Range and overlap auditing
Every detected peak now carries two independent range estimates:
- the production fixed/FWHM or crowded-window mixture-fit area; and
- a clean-room equal-error range estimate with asymmetric boundaries, estimated purity, recovery, background, missed signal, counting uncertainty, and the fixed-versus-adaptive discrepancy.
Equal-error ranging was inspired by the public Atom-Probe-Toolbox, but no GPL source was copied. It remains a shadow diagnostic, because the bundled ablation found a large synthetic-data improvement but regressions on seven of ten real composition controls.
Composition uses a guarded natural-isotope-envelope deconvolution only for
identifiable connected overlap groups with high-confidence species anchors,
full-rank and conditioned envelope matrices, adequate observed coverage,
optimizer convergence, and a residual pass. Rejected groups retain their
assignment probabilities unchanged. Output tables preserve the uncorrected
atomic_percent_assignment beside the promoted atomic_percent_weighted, and
diagnostics.json records every accepted or rejected component.
Install
python -m pip install rangefinder
For development:
git clone https://github.com/kylemcdonald/rangefinder.git
cd rangefinder
python -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"
Quick start
from pathlib import Path
import rangefinder
from rangefinder.io.pos_loader import PosSampleData, PosSampleMetadata
from rangefinder.benchmark.truth import load_pos_arrays
sample_path = Path("your_sample.pos")
x, y, z, mz = load_pos_arrays(sample_path)
meta = PosSampleMetadata(path=sample_path, sample_name="s", sample_slug="s",
event_count=len(mz), file_size_bytes=len(mz) * 16,
verified_big_endian_float32=True,
verified_columns=("x_nm", "y_nm", "z_nm", "m_over_z_da"))
sample = PosSampleData(metadata=meta, x_nm=x, y_nm=y, z_nm=z, m_over_z_da=mz)
config = rangefinder.load_default_config()
artifacts = rangefinder.run_custom_pipeline(sample, Path("out"), config)
print(artifacts.elemental_composition)
Layout
src/rangefinder/— the package.analysis/— the Rangefinder pipeline (custom_pipeline) plus the comparator front-ends (naive, PyCCAPT, pyOpenMS) and shared assignment/composition stages.benchmark/— ground-truth registry, metrics, and detection-ablation harness.io/,references/,validation/,utils/— POS loading, isotope tables, the synthetic generator, config/paths helpers.bridge.py,bridge_runner.py— run foreign-toolchain comparators (APAV, ms_deisotope, APyT) in a separate environment.config/defaults.yaml— the bundled default pipeline configuration (rangefinder.default_config_path()).
scripts/— the benchmark and paper-table generators.paper/—rangefinder.texand its auto-generatedtables/.controls/— public CC-BY reference datasets (fetch large files withscripts/download_benchmark_controls.sh; reproducible raw data and generated synthetic controls are git-ignored, while provenance and range files are tracked).
Reproduce the benchmark and paper
scripts/download_benchmark_controls.sh # fetch public controls
scripts/bootstrap_env.sh # install comparator environments
python scripts/run_benchmark.py # all methods x all datasets
python scripts/run_detection_ablation.py # detection-stage ablation
python scripts/run_ablation.py # pipeline-stage ablation
python scripts/run_quantification_ablation.py # range/deconvolution promotion test
python scripts/build_paper_tables.py # regenerate paper/tables/*.tex
tectonic paper/rangefinder.tex
Every number in the paper regenerates from these commands; table numbers are never hand-edited.
License
The software is released under the MIT License. The reference data
and range files under controls/ remain CC-BY-4.0 as documented in
controls/README.md.
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 rangefinder-0.2.0.tar.gz.
File metadata
- Download URL: rangefinder-0.2.0.tar.gz
- Upload date:
- Size: 115.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94621b93d33793c14c36ef610be03050d2634c9f07d2fa71353ddd99aea305e2
|
|
| MD5 |
6c771b7f9ce5bb96c5baa1eccbc1a7ea
|
|
| BLAKE2b-256 |
938f125b9c53f7e72411cb4ff036bc2812f4490fd1153c81e595cb32e10e4aa2
|
Provenance
The following attestation bundles were made for rangefinder-0.2.0.tar.gz:
Publisher:
release.yml on kylemcdonald/rangefinder
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rangefinder-0.2.0.tar.gz -
Subject digest:
94621b93d33793c14c36ef610be03050d2634c9f07d2fa71353ddd99aea305e2 - Sigstore transparency entry: 2215286128
- Sigstore integration time:
-
Permalink:
kylemcdonald/rangefinder@7a885953e1471d4c8b0a186020bf2a7cd6a48b18 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kylemcdonald
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7a885953e1471d4c8b0a186020bf2a7cd6a48b18 -
Trigger Event:
release
-
Statement type:
File details
Details for the file rangefinder-0.2.0-py3-none-any.whl.
File metadata
- Download URL: rangefinder-0.2.0-py3-none-any.whl
- Upload date:
- Size: 118.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f763c01b9e4b5b969355627ec400f013670a8372e28f570a92bf4ece2b185ec
|
|
| MD5 |
8dfc7d40308494862c536b5bcbf84ad0
|
|
| BLAKE2b-256 |
3e0c485ac5261cd11d062012ebc10b084a53ae56d2078b7da48def0aa636021d
|
Provenance
The following attestation bundles were made for rangefinder-0.2.0-py3-none-any.whl:
Publisher:
release.yml on kylemcdonald/rangefinder
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rangefinder-0.2.0-py3-none-any.whl -
Subject digest:
2f763c01b9e4b5b969355627ec400f013670a8372e28f570a92bf4ece2b185ec - Sigstore transparency entry: 2215286148
- Sigstore integration time:
-
Permalink:
kylemcdonald/rangefinder@7a885953e1471d4c8b0a186020bf2a7cd6a48b18 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kylemcdonald
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7a885953e1471d4c8b0a186020bf2a7cd6a48b18 -
Trigger Event:
release
-
Statement type: