Skip to main content

msalign: Signal calibration and alignment by reference peaks

Project description

msalign - signal calibration and alignment

Tests codecov CodeFactor Netlify Status

Wheel PyPI Versions Downloads

This package was inspired by MATLAB's msalign function which allows alignment of multiple signals to reference peaks.

Installation

Install from PyPi

pip install msalign

Install directly from GitHub

pip install -e git+https://github.com/lukasz-migas/msalign.git

Install in development mode

python setup.py develop

Usage

Usage is relatively straightforward. Simply import msalign from the package and provide x, array and peaks values. msalign accepts a lot of other parameters that might improve your alignment - simply provide them as keyword parameters.

import numpy as np
from msalign import msalign


filename = r"./example_data/msalign_test_data.csv"
data = np.genfromtxt(filename, delimiter=",")
x = data[1:, 0]
array = data[1:, 1:].T
peaks = [3991.4, 4598, 7964, 9160]

aligned = msalign(x, array, peaks, weights=[60, 100, 60, 100], only_shift=False)

png

Zoom-in on each peak the spectrum was aligned against

png

Reference

Monchamp, P., Andrade-Cetto, L., Zhang, J.Y., and Henson, R. (2007) Signal Processing Methods for Mass Spectrometry. In Systems Bioinformatics: An Engineering Case-Based Approach, G. Alterovitz and M.F. Ramoni, eds. Artech House Publishers).

MATLAB's msalign

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

msalign-0.2.0.tar.gz (18.5 kB view hashes)

Uploaded Source

Built Distribution

msalign-0.2.0-py2.py3-none-any.whl (17.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page