Writers and controlled vocabulary manager for PSI-MS's mzML and mzIdentML standards
Project description
psims
Prototype work for a unified API for writing PSIMS standardized XML documents, currently just mzML and MzIdentML
mzML Minimal Example
from psims.mzml.writer import MzMLWriter
# Load the data to write
scans = get_scan_data()
with MzMLWriter(open("out.mzML", 'wb')) as out:
# Add default controlled vocabularies
out.controlled_vocabularies()
# Open the run and spectrum list sections
with out.run(id="my_analysis"):
with out.spectrum_list(count=len(scans)):
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
})
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-0.1.15.tar.gz
(601.3 kB
view details)
Built Distribution
psims-0.1.15-py2-none-any.whl
(628.2 kB
view details)
File details
Details for the file psims-0.1.15.tar.gz
.
File metadata
- Download URL: psims-0.1.15.tar.gz
- Upload date:
- Size: 601.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.3 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8c75c7a7b1750091b8371abdb36f5031dbae2dab53ac218806b42769c2f7a9d |
|
MD5 | 88e1b2c13afdfdc50ec8b229738232ea |
|
BLAKE2b-256 | 1eafc84952cf431992cb577eff0dc96eae122ceae8b50aead7be02b23f8cbd8c |
File details
Details for the file psims-0.1.15-py2-none-any.whl
.
File metadata
- Download URL: psims-0.1.15-py2-none-any.whl
- Upload date:
- Size: 628.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.3 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e07e57b637a7b239245b5803870aa4975ddee7f0620b78c3c20a636736536a45 |
|
MD5 | 24dc5f38c5a79db729d223eb9828694c |
|
BLAKE2b-256 | 871af96537e03fea13722ab01471f4a4043eb457bfecce2225f0a876f67baff4 |