Skip to main content

Particle Picking of Cryo-EM Datasets

Project description

PyPI Downloads Python 3.11+ License: MIT PyPI version DOI Code style: black Tests codecov Documentation Documentation Status

cryoblob

cryoblob is a JAX-based, JIT-compiled, scalable package for detection of amorphous blobs in low SNR cryo-EM images. It provides both traditional circular blob detection and advanced multi-method detection for complex morphologies including elongated objects and overlapping structures.

Features

  • JAX-powered: Leverages JAX for high-performance computing with automatic differentiation
  • GPU acceleration: Can utilize both CPUs and GPUs for processing
  • Multi-method detection: Advanced detection algorithms for diverse blob morphologies:
    • Traditional LoG: Excellent for circular blobs
    • Ridge detection: Specialized for elongated (pill-shaped) objects
    • Watershed segmentation: Separates overlapping circular structures
    • Hessian-based detection: Superior boundary localization
  • Adaptive filtering: Includes adaptive Wiener filtering and thresholding
  • Batch processing: Memory-optimized batch processing for large datasets
  • Validation: Comprehensive parameter validation using Pydantic models

Installation

pip install cryoblob

Quick Start

Basic Blob Detection

import cryoblob as cb

# Load an MRC file
mrc_image = cb.load_mrc("your_file.mrc")

# Traditional circular blob detection
blobs = cb.blob_list_log(mrc_image)

# Process a folder of images
results = cb.folder_blobs("path/to/folder/")

# Plot results
cb.plot_mrc(mrc_image)

Enhanced Multi-Method Detection

# For complex scenarios with multiple blob types
circular, elongated, overlapping = cb.enhanced_blob_detection(
    mrc_image,
    use_ridge_detection=True,    # Detect elongated objects
    use_watershed=True           # Separate overlapping blobs
)

print(f"Found {len(circular)} circular, {len(elongated)} elongated, "
      f"and {len(overlapping)} overlapping blobs")

Specialized Detection

from cryoblob.valid import (create_elongated_objects_pipeline, 
                           create_overlapping_blobs_pipeline,
                           create_comprehensive_pipeline)

# For elongated (pill-shaped) objects
config = create_elongated_objects_pipeline()
_, elongated_blobs, _ = cb.enhanced_blob_detection(mrc_image, **config.to_enhanced_kwargs())

# For overlapping circular structures  
config = create_overlapping_blobs_pipeline()
circular, _, separated_blobs = cb.enhanced_blob_detection(mrc_image, **config.to_enhanced_kwargs())

# For comprehensive analysis (all methods)
config = create_comprehensive_pipeline()
all_results = cb.enhanced_blob_detection(mrc_image, **config.to_enhanced_kwargs())

Detection Methods

Blob Type Method Best For Key Function
Circular LoG Standard round particles blob_list_log()
Elongated Ridge Detection Pill-shaped, rod-like objects ridge_detection()
Overlapping Watershed Touching circular structures watershed_segmentation()
Mixed/Complex Enhanced Detection Multiple morphologies enhanced_blob_detection()

Package Structure

The cryoblob package is organized into the following modules:

  • adapt: Adaptive image processing with gradient descent optimization
  • blobs: Core blob detection algorithms and preprocessing
  • files: File I/O operations and batch processing
  • image: Basic image processing functions (filtering, resizing, etc.)
  • multi: Multi-method detection for elongated objects and overlapping blobs
  • plots: Visualization functions for MRC images and results
  • types: Type definitions and PyTree structures
  • valid: Parameter validation using Pydantic models

Use Cases

Standard Cryo-EM Particles

# Traditional circular blob detection
blobs = cb.blob_list_log(mrc_image, min_blob_size=5, max_blob_size=20)

Elongated Biological Structures

# Detect pill-shaped, rod-like, or filamentous objects
_, elongated, _ = cb.enhanced_blob_detection(
    mrc_image, use_ridge_detection=True, use_watershed=False
)

Overlapping or Touching Particles

# Separate overlapping circular structures
_, _, separated = cb.enhanced_blob_detection(
    mrc_image, use_ridge_detection=False, use_watershed=True
)

Complex Heterogeneous Samples

# Comprehensive analysis for mixed morphologies
circular, elongated, overlapping = cb.enhanced_blob_detection(
    mrc_image, use_ridge_detection=True, use_watershed=True
)

Performance

  • Memory Efficient: Automatic batch size optimization and memory management
  • Scalable: Multi-device and multi-host processing support
  • Fast: JIT compilation and GPU acceleration where available
  • Flexible: Selective method usage to optimize speed vs. comprehensiveness

Package Organization

  • The codes are located in /src/cryoblob/
  • The notebooks are located in /tutorials/

Documentation

For detailed API documentation and tutorials, visit: https://cryoblob.readthedocs.io

License

This project is licensed under the MIT License - see the LICENSE file for details.

Authors

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

cryoblob-2025.8.1.tar.gz (39.2 kB view details)

Uploaded Source

Built Distribution

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

cryoblob-2025.8.1-py3-none-any.whl (47.9 kB view details)

Uploaded Python 3

File details

Details for the file cryoblob-2025.8.1.tar.gz.

File metadata

  • Download URL: cryoblob-2025.8.1.tar.gz
  • Upload date:
  • Size: 39.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for cryoblob-2025.8.1.tar.gz
Algorithm Hash digest
SHA256 7ba7dafa21ffc66a35cd3022781ac40791dcdb78c25c4c9ea037261f0f2918a7
MD5 40b23cb43741b004eb9060fc866a7f4b
BLAKE2b-256 a00387568d2faba58b2a13078a51e4e22f7ef0c489cc71d346f31708448ecb1f

See more details on using hashes here.

File details

Details for the file cryoblob-2025.8.1-py3-none-any.whl.

File metadata

  • Download URL: cryoblob-2025.8.1-py3-none-any.whl
  • Upload date:
  • Size: 47.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for cryoblob-2025.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0f54cbd755e4374669fbdca914b053c54cb07853312e0c2abf0b28c3055e2a3d
MD5 ab4d6cc6db29aa9e66435e1117e3191f
BLAKE2b-256 8b7a548e34d7c7467be9a4e92c18aeacd88e16b4b0dd10139a737e3ad1e9a34e

See more details on using hashes here.

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