Writers and controlled vocabulary manager for PSI-MS's mzML and mzIdentML standards
Project description
psims
Prototype work for a unified API for writing Proteomics Standards Initiative standardized formats for mass spectrometry:
- mzML
- mzIdentML
- mzMLb
See the Documenation for more information
Installation
With pip:
pip install psims
With conda:
conda install -c bioconda -c conda-forge -c defaults psims
mzML Minimal Example
from psims.mzml.writer import MzMLWriter
# Load the data to write
scans = get_scan_data()
with MzMLWriter(open("out.mzML", 'wb'), close=True) as out:
# Add default controlled vocabularies
out.controlled_vocabularies()
# Open the run and spectrum list sections
with out.run(id="my_analysis"):
spectrum_count = len(scans) + sum([len(products) for _, products in scans])
with out.spectrum_list(count=spectrum_count):
for scan, products in scans:
# Write Precursor scan
out.write_spectrum(
scan.mz_array, scan.intensity_array,
id=scan.id, params=[
"MS1 Spectrum",
{"ms level": 1},
{"total ion current": sum(scan.intensity_array)}
])
# Write MSn scans
for prod in products:
out.write_spectrum(
prod.mz_array, prod.intensity_array,
id=prod.id, params=[
"MSn Spectrum",
{"ms level": 2},
{"total ion current": sum(prod.intensity_array)}
],
# Include precursor information
precursor_information={
"mz": prod.precursor_mz,
"intensity": prod.precursor_intensity,
"charge": prod.precursor_charge,
"scan_id": prod.precursor_scan_id,
"activation": ["beam-type collisional dissociation", {"collision energy": 25}],
"isolation_window": [prod.precursor_mz - 1, prod.precursor_mz, prod.precursor_mz + 1]
})
Citing
If you use psims
in an academic project, please cite:
Klein, J. A., & Zaia, J. (2018). psims - A declarative writer for mzML and mzIdentML for Python. Molecular & Cellular Proteomics, mcp.RP118.001070. https://doi.org/10.1074/mcp.RP118.001070
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
psims-1.2.6.tar.gz
(14.7 MB
view details)
Built Distribution
psims-1.2.6-py3-none-any.whl
(14.7 MB
view details)
File details
Details for the file psims-1.2.6.tar.gz
.
File metadata
- Download URL: psims-1.2.6.tar.gz
- Upload date:
- Size: 14.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88a2da966d043d7c8ef77326dbb9e5ed8fa6a7c4b8c73716ffb87b166a0f489f |
|
MD5 | 0a34bbb7cb4adeb570b86be1eb49adb0 |
|
BLAKE2b-256 | 0df15578b0c078e19dd9e051f5c25dc3ba9fc3639ee90845d0804b1ec6c4b646 |
File details
Details for the file psims-1.2.6-py3-none-any.whl
.
File metadata
- Download URL: psims-1.2.6-py3-none-any.whl
- Upload date:
- Size: 14.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 716fa83be3b4712e4fb9f50b922c3f99c971642070dc9ddaafd6029d49efd06c |
|
MD5 | d296f87eb57ebc7e04c0e068344081d0 |
|
BLAKE2b-256 | c7e826326df9448ace70fc5aaa7b5b01105909f65e38dd07c6f211cb2faea5f7 |