/usr/share/pyshared/pymzml/run.py is in python-mzml 0.7.4-dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | #!/usr/bin/env python3.2
# -*- coding: utf-8 -*-
# encoding: utf-8
"""
The class :py:class:`Reader` has been designed to selectivly extract data
from a mzML file and to expose the data as a python object.
Necessary information are read in and stored in a fast
accesible format.
The reader itself is an iterator, thus looping over all spectra
follows the classical pythonian syntax.
Additionally one can random access spectra by their nativeID
if the file if not compressed or truncated by a conversion Program.
The class :py:class:`Writer` is still in development.
"""
# pymzml
#
# Copyright (C) 2010-2011 T. Bald, J. Barth, A. Niehues, M. Specht, C. Fufezan
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
import sys
import re
import os
import bisect
from xml.etree import cElementTree
from collections import defaultdict as ddict
import pymzml.spec
import pymzml.obo
import pymzml.minimum
class Reader(object):
"""
.. function:: __init__(path* [,noiseThreshold = 0.0, extraAccessions = None, MS1_Precision = 5e-6, MSn_Precision = 20e-6])
Initializes an mzML run and returns an iterator.
:param path: path to mzML file. File can be gzipped.
:type path: string
:param extraAccessions: list of additional (accession,fieldName) tuples.
For example, ('MS:1000285',['value']) will extract the "total ion
current" and store it under two keys in the spectrum, i.e.
spectrum["total ion current"] or spectrum['MS:1000285'].
The translated name is extracted from the current OBO file,
hence the name that is defined by the HUPO-PSI consortium is used. (http://www.psidev.info/).
pymzML comes with an example script queryOBO.py which can be used to lookup
the names or MS tags (see: :py:obj:`queryOBO`).
The value, i.e. which xml property has to be extraced has to be provided by the user.
Multiple values can be used as input, i.e. ( 'MS:1000016' , ['value','unitName'] ) will extract scan time and its unit.
:type extraAccessions: list of tuples
:param MS1_Precision: measured precision of MS1 spectra
:type MS1_Precision: float
:param MSn_Precision: measured precision of MSn spectra
:type MSn_Precision: float
Example:
>>> run = pymzml.run.Reader("../mzML_example_files/100729_t300_100729172744.mzML.gz" ,
MS1_Precision = 20e-6 )
"""
def __init__(
self,
path,
noiseThreshold = 0.0,
extraAccessions = None,
MS1_Precision = 5e-6,
MSn_Precision = 20e-6
):
# self.param contains user-specified parsing parameters
self.param = dict()
self.param['noiseThreshold'] = noiseThreshold
self.param['MS1_Precision'] = MS1_Precision
self.param['MSn_Precision'] = MSn_Precision
self.param['accessions'] = { }
# self.info contains information extracted from the mzML file
self.info = dict()
self.info['offsets'] = ddict()
self.info['filename'] = path
self.info['offsetList'] = []
self.MS1_Precision = MS1_Precision
self.elementList = []
# Default stuff
#self.spectrum = pymzml.spec.Spectrum(measuredPrecision = MS1_Precision)
#self.spectrum.clear()
self.spectrum = pymzml.spec.Spectrum(measuredPrecision = MS1_Precision , param = self.param)
self.spectrum.clear()
#
if self.info['filename'].endswith('.gz'):
import gzip, codecs
self.info['fileObject'] = codecs.getreader("utf-8")(gzip.open(self.info['filename']))
self.info['seekable'] = False
else:
self.info['fileObject'] = open(self.info['filename'],'r')
self.info['seekable'] = True
### declare the seeker
# read encoding ... maybe not really needed ...
self.seeker = open(self.info['filename'],'rb')
header = self.seeker.readline()
encodingPattern = re.compile( b'encoding="(?P<encoding>[A-Za-z0-9-]*)"')
match = encodingPattern.search(header)
if match:
self.info['encoding'] = bytes.decode( match.group('encoding'))
else:
self.info['encoding'] = None
#reading last 1024 bytes to find chromatogram Pos and SpectrumIndex Pos
indexListOffsetPattern = re.compile( b'<indexListOffset>(?P<indexListOffset>[0-9]*)</indexListOffset>' )
chromatogramOffsetPattern = re.compile( b'(?P<WTF>[nativeID|idRef])="TIC">(?P<offset>[0-9]*)</offset' )
self.info['offsets']['indexList'] = None
self.info['offsets']['TIC'] = None
self.seeker.seek(0,2)
for _ in range(10): # max 10kbyte
try:
self.seeker.seek( -1024*_, 1 )
except:
break
# File is smaller than 10kbytes ...
for line in self.seeker:
match = chromatogramOffsetPattern.search(line)
#print(_, line)
if match:
self.info['offsets']['TIC'] = int(bytes.decode( match.group('offset')))
match = indexListOffsetPattern.search(line)
if match:
self.info['offsets']['indexList'] = int(bytes.decode( match.group('indexListOffset')))
#break
if self.info['offsets']['indexList'] != None and self.info['offsets']['TIC'] != None:
break
if self.info['offsets']['indexList'] == None:
# fall back to non-seekable
self.info['seekable'] = False
# print('Could not find indexList. Falling back to non seekable.', file = sys.stderr)
elif self.info['offsets']['TIC'] > os.path.getsize(self.info['filename']):
self.info['seekable'] = False
#print('mzML file was truncated, but offsets were not recalculated. Falling back to non seekable.', file = sys.stderr)
else:
# Jumping to index list and slurpin all specOffsets
self.seeker.seek(self.info['offsets']['indexList'],0)
spectrumIndexPattern = re.compile( b'(?P<type>[scan=|nativeID="])(?P<nativeID>[0-9]*)">(?P<offset>[0-9]*)</offset>' )
simIndexPattern = re.compile( b'(?P<type>idRef=")(?P<nativeID>.*)">(?P<offset>[0-9]*)</offset>' )
## NOTE: this might be again different in another mzML versions!!
## 1.1 >> small_zlib.pwiz.1.1.mzML: <offset idRef="controllerType=0 controllerNumber=1 scan=1">4363</offset>
## 1.0 >> <offset idRef="S16004" nativeID="16004">236442042</offset>
## <offset idRef="SIM SIC 651.5">330223452</offset>\n'
for line in self.seeker:
match_spec = spectrumIndexPattern.search(line)
if match_spec and match_spec.group('nativeID') == b'':
match_spec = None
match_sim = simIndexPattern.search(line)
if match_spec:
self.info['offsets'][ int(bytes.decode( match_spec.group('nativeID'))) ] = int(bytes.decode( match_spec.group('offset')))
self.info['offsetList'].append(int(bytes.decode( match_spec.group('offset'))))
elif match_sim:
self.info['offsets'][ bytes.decode( match_sim.group('nativeID')) ] = int(bytes.decode( match_sim.group('offset')))
self.info['offsetList'].append(int(bytes.decode( match_sim.group('offset'))))
# opening seeker in normal mode again
self.seeker.close()
self.seeker = open(self.info['filename'],'r')
### declare the iter
self.iter = iter(cElementTree.iterparse(self.info['fileObject'], events = ( b'start',b'end'))) # NOTE: end might be sufficient
# Move iter to spectrumList / chromatogramList
while True:
event, element = next(self.iter)
if element.tag.endswith('}mzML'):
if 'version' in element.attrib and len(element.attrib['version']) > 0:
self.info['mzmlVersion'] = element.attrib['version']
else:
s = element.attrib['{http://www.w3.org/2001/XMLSchema-instance}schemaLocation']
self.info['mzmlVersion'] = re.search( r'[0-9]*\.[0-9]*\.[0-9]*', s ).group()
elif element.tag.endswith('}spectrumList'):
break
elif element.tag.endswith('}chromatogramList'):
## SRM only ?
break
else:
pass
## parse obo, check MS tags and if they are ok in minimum.py (minimum required) ...
self.OT = pymzml.obo.oboTranslator()
for minimumMS, ListOfvaluesToExtract in pymzml.minimum.MIN_REQ:
self.param['accessions'][minimumMS] = {
'valuesToExtract' : ListOfvaluesToExtract ,
'name' : self.OT[minimumMS] ,
'values' : []
}
# parse extra accessions ...
if extraAccessions != None:
for accession, fieldIdentifiers in extraAccessions:
if accession not in self.param['accessions'].keys():
self.param['accessions'][accession] = {
'valuesToExtract' : [] ,
'name' : self.OT[accession],
'values' : []
}
for valueToExtract in fieldIdentifiers:
if valueToExtract not in self.param['accessions'][accession]['valuesToExtract']:
self.param['accessions'][accession]['valuesToExtract'].append(valueToExtract)
return
def __iter__(self):
return self
def __next__(self):
""" The python 2.6+ iterator """
return self.next()
def next(self):
"""
Iterator in class :py:class:`Run`:
will return an instance of :py:class:`spec.Spectrum`, stored in run.spectrum.
Example:
>>> for spectrum in run:
... print(spectrum['id'], end='\\r')
"""
while True:
event, element = next(self.iter, ('END','END'))
# error? check cElementTree; conversion of data to 32bit-float mzml files might help
# stop iteration when parsing is done
if event == 'END':
raise StopIteration
if (element.tag.endswith('}spectrum') or element.tag.endswith('}chromatogram') ) and event == b'end':
self.spectrum.initFromTreeObject(element)
try:
self.elementList[-1].clear()
except:
pass
self.elementList.append(element)
return self.spectrum
def __getitem__(self,value):
'''
Random access to spectra if mzML fill is indexed,
not compressed and not truncted.
Example:
>>> spectrum_with_nativeID_100 = msrun[100]
'''
answer = None
if self.info['seekable'] == True:
if len(self.info['offsets'].keys()) == 0:
print("File does support random access, unfortunately indexlist missing, i.e. type not implemented yet ...", file=sys.stderr)
if value in self.info['offsets']:
startPos = self.info['offsets'][value]
endPos_index = bisect.bisect_right(self.info['offsetList'],self.info['offsets'][value])
if endPos_index == len(self.info['offsetList']):
endPos = os.path.getsize(self.info['filename'])
else:
endPos = self.info['offsetList'][endPos_index]
self.seeker.seek(startPos,0)
data = self.seeker.read(endPos-self.info['offsets'][value])
try:
self.spectrum.initFromTreeObject( cElementTree.fromstring( data ))
except:
## have closing </mzml> & </run> &or </spectrumList>
startingTag = data.split()[0]
stopIndex = data.index( '</'+startingTag[1:]+'>')
self.spectrum.initFromTreeObject( cElementTree.fromstring( data[:stopIndex+len(startingTag)+2] ))
answer = self.spectrum
else:
print("Run does not contain spec with native ID {0}".format(value),file=sys.stderr)
#print(self.info['offsets'].keys())
else:
self.iter = iter(cElementTree.iterparse(self.info['filename'], events = ( b'start',b'end'))) # NOTE: end might be sufficient
for _ in self:
if _['id'] == value:
answer = _
break
return answer
class Writer(object):
"""
.. function:: __init__(filename* ,run* [, overwrite = boolean])
Initializes an mzML writer (beta stage).
:param path: filename for the new mzML file.
:type path: string
:param run: Currently a pymzml.run.Reader object is required since we do not write the header by ourselves, yet.
:type run: pymzml.run.Reader
:param overwrite: force the re-initialization of mzML file, even if file exists.
:type overwrite: boolean
Example:
>>> run = pymzml.run.Reader('../mzML_example_files/100729_t300_100729172744.mzML', MS1_Precision = 5e-6)
>>> run2 = pymzml.run.Writer(filename = 'write_test.mzML', run= run , overwrite = True)
>>> spec = run[1000]
>>> run2.addSpec(spec)
>>> run2.save()
"""
def __init__(self,filename = None, run = None, overwrite = False):
cElementTree.register_namespace("","http://psi.hupo.org/ms/mzml")
self.filename = filename
self.lookup = {
}
self.newTree = None
self.TreeBuilder = cElementTree.TreeBuilder()
self.run = run
self.info = {'counters': ddict(int) }
if self.run.info['filename'].endswith('.gz'):
import gzip, codecs
io = codecs.getreader("utf-8")(gzip.open(self.run.info['filename']))
else:
io = open(self.run.info['filename'],'r')
for event,element in cElementTree.iterparse(io, events = ( b'start',b'end')):
if self.newTree == None:
self.newTree = cElementTree.Element(element.tag,element.attrib)
else:
if event == b'start':
self.TreeBuilder.start(element.tag, element.attrib)
if element.tag.endswith('}run'):
self.lookup['run'] = cElementTree.Element(element.tag,element.attrib)
if element.tag.endswith('}spectrumList'):
self.lookup['spectrumList'] = cElementTree.Element(element.tag,element.attrib)
self.lookup['spectrumIndeces'] = cElementTree.Element('index',{'name':'spectrum'}),
break
elif element.tag.endswith('}chromatogramList'):
break
else:
pass
else:
if element.tag.endswith('}softwareList'):
### Insert pymzML software tag
## Example :software id="pwiz_Reader_Thermo"><softwareParam accession="MS:1000615" cvRef="MS" name="ProteoWizard" version="1.0" />
self.TreeBuilder.start('software', {'id':'pymzML 0.7.1'})
self.TreeBuilder.start('softwareParam', {'accession':'MS:0000000', 'cvRef':'MS', 'name':'pymzML writer', 'version':'0.7.1'})
self.newTree.append(self.TreeBuilder.end('softwareParam'))
self.newTree.append(self.TreeBuilder.end('software'))
self.TreeBuilder.data(element.text)
self.newTree.append(self.TreeBuilder.end(element.tag))
return
def addSpec(self,spec):
self._addTree(spec,typeOfSpec='spectrum')
return
def addChromatogram(self,spec):
self._addTree(spec,typeOfSpec='chromatogram')
return
def _addTree(self,spec,typeOfSpec=None):
if typeOfSpec not in self.lookup.keys():
self.lookup['{0}List'.format(typeOfSpec)] = cElementTree.Element('{0}List'.format(typeOfSpec) , {'count':0})
self.lookup['{0}Indeces'.format(typeOfSpec)] = cElementTree.Element('index',{'name':typeOfSpec})
self.lookup[typeOfSpec+'List'].append( spec._xmlTree )
offset = cElementTree.Element('offset')
offset.text = 'Not implemented yet'
offset.attrib = {'idRef': 'NaN', 'nativeID': str(spec['id'])}
self.lookup[typeOfSpec+'Indeces'].append(offset)
self.info['counters'][typeOfSpec] += 1
return
def save(self):
for typeOfSpec in ['spectrum','chromatogram']:
if typeOfSpec+'List' in self.lookup.keys():
self.lookup['{0}List'.format(typeOfSpec)].set('count', str(self.info['counters'][typeOfSpec]))
self.lookup['run'].append(self.lookup[typeOfSpec+'List'])
self.newTree.append(self.lookup['run'])
IndexList = cElementTree.Element('IndexList' , {'count': str(len(self.info['counters'].keys()))})
for typeOfSpec in ['spectrum','chromatogram']:
if typeOfSpec+'Indeces' in self.lookup.keys():
IndexList.append(self.lookup['{0}Indeces'.format(typeOfSpec)])
self.newTree.append(IndexList)
self.prettyXMLformater(self.newTree)
self.xmlTree = cElementTree.ElementTree(self.newTree)
self.xmlTree.write(self.filename, encoding="ISO-8859-1", xml_declaration=True )
return
def prettyXMLformater(self, element, level = 0):
# Modified version from
# http://infix.se/2007/02/06/gentlemen-indent-your-xml
# which is a modified version of
# http://effbot.org/zone/element-lib.htm#prettyprint
i = '\n{0}'.format(level*' ')
if len(element):
if not element.text or not element.text.strip():
element.text = i + ' '
for e in element:
self.prettyXMLformater(e, level+1)
if not e.tail or not e.tail.strip():
e.tail = i + ' '
if not e.tail or not e.tail.strip():
e.tail = i
else:
if level and (not element.tail or not element.tail.strip()):
element.tail = i
return
if __name__ == '__main__':
print(__doc__)
|