File: intro.txt

package info (click to toggle)
python-mzml 0.7.4-dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 996 kB
  • ctags: 160
  • sloc: python: 1,807; makefile: 133; sh: 18
file content (125 lines) | stat: -rw-r--r-- 3,908 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
############
Introduction
############

The latest Documentation was generated on: |today|


*******************
General information
*******************

Module to parse mzML data in Python based on cElementTree

Copyright 2010-2011 by:

    | T. Bald,
    | J. Barth,
    | A. Niehues,
    | M. Specht,
    | M. Hippler,
    | C. Fufezan


===================
Contact information
===================

Please refer to:

    | Dr. Christian Fufezan
    | Institute of Plant Biology and Biotechnology
    | Schlossplatz 7 , R 372
    | or
    | Hindenburgplatz 55        (mail)
    | University of Muenster
    | Germany
    | eMail: christian@fufezan.net
    | Tel: +049 251 83 24861
    |
    | http://www.uni-muenster.de/Biologie.IBBP.AGFufezan


*******
Summary
*******

pymzML is an extension to Python that offers
    * a) easy access to mass spectrometry (MS) data that allows the rapid development of tools,
    * b) a very fast parser for mzML data, the standard in mass spectrometry data format and
    * c) a set of functions to compare or handle spectra.

**************
Implementation
**************

pymzML requires Python2.6.5+ and is fully compatible with Python3.
The module is freely available on pymzml.github.com or pypi,
published under LGPL and requires no additional modules to be installed.


********
Download
********

Get the latest version via github
    | https://github.com/pymzml/pymzML

or the latest package at
    | http://pymzml.github.com/dist/pymzml.tar.bz2
    | http://pymzml.github.com/dist/pymzml.zip

The complete Documentation can be found as pdf
    | http://pymzml.github.com/dist/pymzml.pdf


********
Citation
********

Please cite us when using pymzML in your work.

Bald, T., Barth, J., Niehues, A., Specht, M., Hippler, M., and Fufezan, C. (2012) pymzML - Python module for high throughput bioinformatics on mass spectrometry data, Bioinformatics, doi: 10.1093/bioinformatics/bts066

The original publication can be found here:
    | http://bioinformatics.oxfordjournals.org/content/early/2012/02/02/bioinformatics.bts066.abstract
    | http://bioinformatics.oxfordjournals.org/content/early/2012/02/02/bioinformatics.bts066.full.pdf


************
Installation
************

sudo python setup.py install


************
Introduction
************

Mass spectrometry has evolved into a very diverse field that relies heavily on
high throughput bioinformatic tools. Due to the increasing complexity of the
questions asked and biological problems addressed, standard tools might not
be sufficient and tailored tools still
have to be developed. However, the development of such tools has been hindered by
proprietary data formats and the lack of an unified mass spectrometric data
file standard.
The latter has been overcome by the publication of the mzML standard
by the HUPO Proteomics Standards Initiative (Deutsch, 2008) (http://www.psidev.info/)
and soon all manufactures will hopefully offer a way to convert
their format into this standardized one in order to stay comparable and competitive.
Therefore in order to rapidly develop bioinformatic tools that can explore
mass spectrometry data one needs a portable, robust, yet quick and
easy interface to mzML files.
The Python scripting language (http://python.org) is predestined for such a task.

Scripting languages carry several advantages compared to compiled programs and
although compiled programs tend to be faster, scripting languages can already
compete successfully in some tasks.
For example, XML parsing is extremely optimized in Python due to the
cElementTree module (http://effbot.org/zone/element-index.htm),
which allows XML parsing in a fraction of classical C/C++ libraries,
such as libxml2 or sgmlop.
Therefore it seems natural that a well designed python mzML parser
can successfully compete with C/C++ libraries currently available
while offering the advantages of a scripting language.