exon-benchmarks 0.3.3

Executable benchmarks for exon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys

from pyteomics.mzml import MzML


def main():
    mzml_path = sys.argv[1]
    count = 0

    mzml = MzML(mzml_path)

    for _ in mzml:
        count += 1

    print(count)

main()