Skip to main content

mxspots

High-Performance Spot Finding, Bragg Lattice Analysis, and Quality Scoring for Macromolecular Crystallography (MX)

mxspots is a fast, multithreaded library and command-line toolkit designed for real-time diffraction frame quality assessment and spot analysis in Macromolecular Crystallography. It combines an optimized C core engine with a Python API, integrating with mxio to process detector images (.cbf, .h5, Eiger/Pilatus, etc.) at beamline acquisition rates.


Key Features

  • Fast Multithreaded Spot Finding: Employs 2D Integral Images (Summed-Area Tables) and OpenMP parallelization for constant-time local background and dispersion estimation, followed by single-pass streaming Connected Component Labeling (CCL).
  • Automated Ice Ring Detection & Masking: Performs 1D azimuthal radial integration to detect characteristic powder ice rings (e.g., at 3.90 Å, 3.67 Å, 2.25 Å, 2.07 Å, 1.92 Å) and masks candidate spots falling within contaminated resolution shells.
  • Reciprocal Difference-Vector Lattice Analysis: Uses difference-vector recurrence clustering in reciprocal space to classify regular Bragg spots from amorphous scatter or noise without requiring reciprocal lattice FFT indexing.
  • Hybrid Gated-Logistic Quality Scoring: Generates a unified, normalized quality score ($0 - 100$) using a calibrated factor hierarchy (ADR 0020) combining Bragg spot count, Bragg fraction, average SNR, resolution limit ($d_{98}$), and ice contamination penalties.
  • Zero-Allocation Batch Processing: Pre-allocates reusable execution contexts (MxSpotsContext) for scratch buffers during batch grid scans and mesh screening.
  • XDS Compatibility: Supports exporting spots directly to SPOT.XDS format.

Use Cases

  1. Beamline Rastering & Crystal Screening: Rapidly evaluate hundreds of grid-scan frames to identify optimal crystal centering and diffraction hotspots.
  2. Real-Time Data Collection Monitoring: Compute instant quality scores and resolution limits during live rotation data collection.
  3. Automated Ice Contamination Flagging: Detect crystalline water ice rings early and exclude corrupted resolution shells from downstream processing.
  4. Spot Finding & XDS Export: Generate filtered spot lists and SPOT.XDS coordinate files for downstream data processing pipelines.

Installation

Binary Wheels (Recommended)

Pre-compiled binary wheels are available for standard Linux systems (manylinux_2_28 and musllinux_1_2 across x86_64 and aarch64 on Python 3.12+):

pip install mxspots

Install from Source

When installing from source or building custom binaries:

  • Prerequisites:
    • Python 3.12 or later
    • C Compiler (GCC, Clang, or MSVC) with OpenMP support
    • CMake 3.18 or later
# Clone the repository
git clone https://github.com/michel4j/mxspots.git
cd mxspots

# Install in editable mode with development dependencies
pip install -e ".[dev]"

Quick Start & CLI

mxspots provides command-line tools for rapid diffraction frame analysis:

1. Finding Spots (mxspots.findspots)

Find Bragg spots in a single frame and optionally export them to SPOT.XDS:

# Basic spot finding
mxspots.findspots /path/to/frame_00001.cbf

# Custom SNR threshold, resolution filtering, and XDS export
mxspots.findspots /path/to/frame_00001.cbf --snr 5.0 --dmin 1.5 --dmax 20.0 --xds

Example Output

Found 342 spots in /path/to/frame_00001.cbf:
Index  X (px)     Y (px)     d (Å)      Intensity    SNR     
------------------------------------------------------------
1      1248.50    1312.20    2.45       5420.0       42.3    
2      1105.10    1480.00    2.12       4980.0       38.7    
3      1380.25    1150.80    2.80       4320.0       35.1    
... and 322 more spots.

2. Quality Scoring (mxspots.score)

Compute composite quality score, Bragg spot metrics, resolution limit, and ice ring diagnostics:

# Output formatted summary
mxspots.score /path/to/frame_00001.cbf

# Output detailed JSON for automated beamline pipelines
mxspots.score /path/to/frame_00001.cbf --json

Example Output

Quality Score for /path/to/frame_00001.cbf:
  Score:              88.4 / 100
  Spot Count:         342
  Bragg Spots:        318
  Bragg %:            93.0%
  Avg Intensity:      1420.5
  Lattices Detected:  1
  Average SNR:        14.22
  Resolution Limit:   1.75 Å (98th percentile)
  Ice Score:          0.00

Python API

Finding Spots

from mxspots import findspots, SpotParams

# Configure spot finding parameters
params = SpotParams(
    snr_threshold=6.0,
    d_min=1.5,
    d_max=20.0,
    ice_mask=True,
)

# Find spots from an image file or NumPy array
spot_list = findspots("frame_00001.cbf", params=params)

print(f"Detected {spot_list.count} spots:")
for spot in spot_list.spots[:10]:
    print(f"Spot at ({spot.x:.1f}, {spot.y:.1f}), d = {spot.d_spacing:.2f} Å, I = {spot.intensity:.1f}")

# Export to SPOT.XDS
spot_list.to_xds("SPOT.XDS", frame_index=1)

Scoring Diffraction Frames

from mxspots import score, SpotParams

# Compute quality metrics for an image frame
result = score("frame_00001.cbf")

print(f"Composite Score:     {result.score:.1f} / 100")
print(f"Bragg Spots:         {result.bragg_spots} / {result.spot_count} ({result.bragg_percent:.1f}%)")
print(f"Resolution Limit:    {result.d_min:.2f} Å")
print(f"Lattices Detected:   {result.num_lattices}")
print(f"Ice Score:           {result.ice_score:.2f}")

Ice Ring Detection

from mxspots import detect_ice_rings, SpotParams

params = SpotParams(ice_sensitivity=1.0)
ice_result = detect_ice_rings("frame_00001.cbf", params=params)

if ice_result.num_rings > 0:
    print(f"Ice contamination detected (score: {ice_result.ice_score:.2f})")
    for ring in ice_result.rings:
        print(f"  Ring at {ring.d_spacing:.2f} Å (SNR: {ring.score:.1f})")

High-Throughput Batch Scoring (score_data)

For in-memory batch screening of raw NumPy arrays:

import numpy as np
from mxspots import score_data, SpotParams

# Frame 2D float32 array with detector geometry
params = SpotParams(
    beam_x=1500.0,
    beam_y=1500.0,
    distance=200.0,
    wavelength=1.0,
    pixel_size_x=0.075,
    pixel_size_y=0.075,
)

data = np.load("frame_data.npy").astype(np.float32)
res = score_data(data, params=params)
print(f"Score: {res.score:.1f}")

Scoring Model

The Composite Quality Score ($S \in [0, 100]$) uses a Hybrid Gated-Logistic model with a calibrated factor hierarchy (ADR 0020):

$$\text{Score} = \begin{cases} 0.0 & \text{if } N_{\text{bragg}} = 0 \ \text{clamp}\left(\frac{100}{1 + e^{-z}} - P_{\text{ice}},, 0.0,, 100.0\right) & \text{if } N_{\text{bragg}} > 0 \end{cases}$$

where the logit $z$ is computed as:

$$z = -6.50 + 0.75 \ln(1 + N_{\text{bragg}}) + 1.20 \ln(1 + \text{SNR}) + 1.40 (P_{\text{bragg}} / 100) + 0.50 s_{\text{res}}$$

Factor Hierarchy & Dynamic Share

  1. Tier 1 (Major Co-Equal Drivers, ~82% dynamic share):
    • Bragg Spot Count ($N_{\text{bragg}}$): $w_N = 0.75 \ln(1 + N_{\text{bragg}})$ (~44.2% dynamic variance contribution)
    • Signal-to-Noise Ratio ($\text{SNR}$): $w_S = 1.20 \ln(1 + \text{SNR})$ (~38.2% dynamic variance contribution)
  2. Tier 2 (Secondary Driver, ~12% dynamic share):
    • Bragg Percentage ($P_{\text{bragg}}$): $w_P = 1.40 (P_{\text{bragg}} / 100)$ (~11.9% contribution representing crystalline diffraction purity)
  3. Tier 3 (Tertiary Refinement, ~6% dynamic share):
    • Resolution Limit ($s_{\text{res}}$): $w_{\text{res}} = 0.50 s_{\text{res}}$ where $s_{\text{res}} = \text{clamp}\left(\frac{4.0 - d_{98}}{4.0 - 1.2}, 0.0, 1.0\right)$ (~5.6% contribution)
  4. Post-Logistic Ice Penalty ($P_{\text{ice}} \in [0.0, 10.0]$): $$P_{\text{ice}} = \text{clamp}\left(2.0 N_{\text{ice}} + 1.0 \max(0.0, I_{\text{ice}} - 2.0),, 0.0,, 10.0\right)$$ Guarantees that ice contamination penalizes the quality score by at most 10 points (10%).

Testing

Run the test suite with pytest:

pytest

License

This project is licensed under the MIT License.

Download files

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

Source Distribution

mxspots-2026.8.3.tar.gz (273.5 kB view details)

Uploaded Source

Built Distributions

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

mxspots-2026.8.3-cp314-cp314-manylinux_2_28_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mxspots-2026.8.3-cp313-cp313-manylinux_2_28_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mxspots-2026.8.3-cp312-cp312-manylinux_2_28_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

File details

Details for the file mxspots-2026.8.3.tar.gz.

File metadata

  • Download URL: mxspots-2026.8.3.tar.gz
  • Upload date:
  • Size: 273.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.14.7 Linux/7.1.8-200.fc44.x86_64

File hashes

Hashes for mxspots-2026.8.3.tar.gz
Algorithm Hash digest
SHA256 c35e89daa658f8503ecd6b39b48f4f42467155496f532caef91d19e0b5e2e596
MD5 f221684b45f608a1a5e75599b172a4cb
BLAKE2b-256 9795d16a36dae167186e7b15a07a6f258a83c0f24c463d55c25cf41fb01d55d9

See more details on using hashes here.

File details

Details for the file mxspots-2026.8.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mxspots-2026.8.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f25f476bb3c3feff90f6ec8f8c05313e123a603b192eaa56681fc3844a034a17
MD5 f3f2f4b1a58d68939f3f1919c362cfb5
BLAKE2b-256 65977894d35a381e2a28c05240d6b056659dced6894295a70616a4918fff390d

See more details on using hashes here.

File details

Details for the file mxspots-2026.8.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mxspots-2026.8.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ffa1b187e853eb87d37d2322f4182618d8c7f1a5fe822cc9c440036d5d0b1f9
MD5 46d8a79f7a8c5c3a738644a844cbba6c
BLAKE2b-256 dbaff89bef30f259c6a8cde82e410fd52028f4bc8d56c29f491e879869a570e8

See more details on using hashes here.

File details

Details for the file mxspots-2026.8.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mxspots-2026.8.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86901c0ace3b94b46c77197d6ec8b12c585a9cae8a24bf90e2eae07414aedb33
MD5 2588f21739cab86aa9c14d8b5bb15164
BLAKE2b-256 a28701a539e4d17cb4d4d5ccdd9a25cc152b1c3c72cc9ff5e09362e32c3f6ce8

See more details on using hashes here.

Release history Release notifications | RSS feed

2026.8.5

4 files

2026.8.4

4 files

This release

2026.8.3 This release

4 files

2026.8.2

4 files

2026.8.1

4 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page