This file is indexed.

/usr/share/doc/python-mzml/example_scripts/simpleParser_d.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
#!/usr/bin/env python3.2
import pymzml, sys
run = pymzml.run.Reader(sys.argv[1])
with open("pyOutput.txt","w") as io:
    for spec in run:
        for m,i in spec.peaks:
            io.write("{0}\t{1}\n".format(m,i))