Welcome to iMSminer!
iMSminer provides user-friendly, partially GPU- or compiler-accelerated multi-ROI and multi-dataset preprocessing and mining of larger-than-memory imaging mass spectrometry datasets in Python.
Resources
Features
- Interactive input prompts to enhance user-friendliness
- Preprocesses imzML datasets via peak picking, baseline subtraction (optional), mass alignment (optional), and peak integration
- Interactive ROI annotation and selection
- Optional data normalization, internal calibration, MS1 search, MS2 confirmation, and analyte filtering
- Unsupervised learning to extract patterns based on molecular co-localization or in situ molecular profile
- Univariate fold-change statistics with ROI statistics
- Visualiztion of ion image and ion statistics
- Quickstart guides on Google Colab
Installation (Local)
iMSminer
pip install iMSminer
GPU-Accelerated Packages
For optional NVIDIA® CUDA® GPU acceleration, install:
Cupy
RAPIDS
Usage
Usage guide with commonly tuned parameters
# =====Load iMSminer Modules===== #
from iMSminer import data_preprocessing, data_analysis, utils, ImzMLParser_chunk
# =====Preprocess imzML===== #
## specify folder path containing imzML's to preprocess and folder path to save preprocessed data and figures
preprocess = data_preprocessing.Preprocess()
## peak picking with optional mass alignment (if `peak_alignment=True`) and baseline subtraction (if `baseline_subtract=True`)
preprocess.peak_pick(
percent_RAM=5,
pp_method="automatic",
rel_height=0.9,
peak_alignment=True,
align_threshold=1,
align_halfwidth=100,
grid_iter_num=20,
align_reduce=False,
reduce_halfwidth=200,
plot_aligned_peak=True,
index_peak_plot=50,
plot_num_peaks=10,
baseline_subtract=True,
baseline_method="regression",
)
## peak integration with bounds rel_height and optional mass alignment (if `peak_alignment=True`)
preprocess.run(
percent_RAM=5,
peak_alignment=True,
integrate_method="peak_width",
align_halfwidth=100,
grid_iter_num=20,
align_reduce=False,
reduce_halfwidth=200,
plot_aligned_peak=True,
index_peak_plot=50,
plot_num_peaks=10,
)
# =====Analyze Preprocessed Data===== #
# FOR OPTIONAL FUNCTIONS, SKIP THE LINE IF NOT USING THE CAPABILITY
## specify folder path containing preprocessed data
analyze = data_analysis.DataAnalysis()
## ROI annotation and selection
analyze.load_preprocessed_data()
## optional normalization
analyze.normalize_pixel(method="TIC")
## optional internal calibration
analyze.calibrate_mz()
## optional MS1_search
analyze.MS1_search(
ppm_threshold=5, MS1_search_method="avg_sepctrum", filter_db=True, percent_RAM=5
)
## optional analyte filtering
analyze.filter_analytes(method="MS1")
## optional evaluation of image cluster validity
analyze.optimize_image_clustering(k_max=min(10, analyze.mz.shape[0] - 1))
## optional evaluation of validity of in situ molecular profile
analyze.optimize_insitu_clustering(k_max=10)
## image clustering with optional 3D t-SNE mapped in situ (if `insitu_tsne=True`)
analyze.image_clustering(
k=5,
perplexity=5,
insitu_tsne=False,
insitu_perplexity=3,
zoom=0.15,
quantile=99.9,
replicate=0,
img_plot_method="plot_ROI",
feature_label="mz",
jitter_amount=2,
jitter_factor=5,
font_size=20,
ROI_size_divisor=10
)
# in situ segmentation
analyze.insitu_clustering(
k=5, perplexity=15, show_ROI=True, show_square=True, replicate=0, ROI_size_divisor=10
)
# volcano plot; heatmap (if `get_hm=True`)
analyze.make_FC_plot(
legend_label="condition",
feature_label="mz",
jitter_amount=0.5,
jitter_factor=3,
get_hm=True,
hm_width_factor=10,
hm_height_factor=20,
hm_fontsize=20,
hm_wspace=1.5,
font_size=20,
)
# box plot ROI statistics
analyze.make_boxplot()
# ion image visualization
analyze.get_ion_image(
replicate=0,
show_ROI=True,
show_square=True,
color_scheme="inferno",
quantile=99.9,
ROI_size_divisor=10
)
Call for Contributions
We appreciate contributions of any form, from feedback to debugging to method development. We enthusiastically welcome developers to interface their published models with iMSminer and host quickstart guides on Google Colab. Please feel free to contact us at prenticelabuf@gmail.com.
Citation
Please consider citing iMSminer and related packages if iMSminer is helpful to your work
@article{Lin2024,
title = {iMSminer: A Data Processing and Machine Learning Package for Imaging Mass Spectrometry},
url = {http://dx.doi.org/10.26434/chemrxiv-2024-kxjgg},
DOI = {10.26434/chemrxiv-2024-kxjgg},
publisher = {American Chemical Society (ACS)},
author = {Lin, Yu Tin and Bao, Haohui and Scoggins, Troy and Prentice, Boone},
year = {2024},
month = jun
}
@software{pyimzml,
author = {Alexandrov Team, EMBL},
title = {{pyimzML}: A Parser to Read .imzML Files},
url = {https://github.com/alexandrovteam/pyimzML},
version = {1.5.4},
year = {2024},
}
@software{msalign2024,
author = {Lukasz G. Migas},
title = {{msalign}: Spectral alignment based on MATLAB's `msalign` function},
url = {https://github.com/lukasz-migas/msalign},
version = {0.2.0},
year = {2024},
}
Release files for iMSminer 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| imsminer-1.1.1.tar.gz | 234.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| iMSminer-1.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 479.3 kB
Release files / imsminer-1.1.1.tar.gz
| Download URL | imsminer-1.1.1.tar.gz |
|---|---|
| Size | 234.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0508644308d304afc1b1eb1e8ce8cd94977f173895e0b83ed8d203c2420e111a
|
|
BLAKE2b-256 checksum How to use checksums |
81f3bfc0806a2bbf1f6238805f5aa899ebab5650f5c93716e5adc63ac6b74f51
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.10.12
|
Release files / iMSminer-1.1.1-py3-none-any.whl
| Download URL | iMSminer-1.1.1-py3-none-any.whl |
|---|---|
| Size | 244.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2bd7d27edfa0441268c050e59a2a7847c433489e985c328e5381b92d26782e07
|
|
BLAKE2b-256 checksum How to use checksums |
9f98382a21a73abb772d42fbe7951c0a0f117a85c8ce9e66a9c0e6f24749f34d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.10.12
|