This file is indexed.

/usr/share/doc/python-mzml/example_scripts/compareSpectra.py is in python-mzml 0.7.4-dfsg-3.

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
#!/usr/bin/env python3.2
# -*- coding: utf-8 -*-
"""
Compare two spectra and return the cosine distance between them.
The returned value is between 0 and 1, a returned value of 1 
represents highest similarity.

Example:

    >>> spec1 = pymzml.spec.Spectrum(measuredPrecision = 20e-5)
    >>> spec2 = pymzml.spec.Spectrum(measuredPrecision = 20e-5)
    >>> spec1.peaks = [ ( 1500,1 ), ( 1502,2.0 ), (1300,1 )]
    >>> spec2.peaks = [ ( 1500,1 ), ( 1502,1.3 ), (1400,2 )]
    >>> spec1.similarityTo( spec2 )
    0.5682164685724541
    >>> spec1.similarityTo( spec1 )
    1.0000000000000002
    
"""

from __future__ import print_function
import sys
import pymzml
import get_example_file

def main(verbose = False):
    examplemzML = get_example_file.open_example('BSA1.mzML')
    if verbose:
        print("""
        comparing specs
        """)
    run = pymzml.run.Reader(examplemzML)
    tmp = []
    for spec in run:
        if spec['ms level'] == 1:
            if verbose:
                print("Parsing spec lvl 1 has id {0}".format(spec['id']))
            tmp.append(spec.deRef())
            if len(tmp) >= 3:
                break
    if verbose:
        print("Print total number of specs collected {0}".format(len(tmp) ) )
        
        print("cosine between spec 1 & 2 is ",tmp[0].similarityTo(tmp[1]))
        print("cosine score between spec 1 & 3 is ",tmp[0].similarityTo(tmp[2]))
        print("cosine score between spec 2 & 3 is ",tmp[1].similarityTo(tmp[2]))
        
        print("cosine score between first spec against itself ",tmp[0].similarityTo(tmp[0]))
    if tmp[0].similarityTo(tmp[0]) == 1:
        return True
    else:
        return False

if __name__ == '__main__':  
    main(verbose = True)