File: runTests.py

package info (click to toggle)
python-pymzml 0.7.6-dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 66,128 kB
  • ctags: 335
  • sloc: python: 2,428; makefile: 142; sh: 38
file content (33 lines) | stat: -rwxr-xr-x 784 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python3.2

"""
Testscript to demonstrate

"""
    
from __future__ import print_function
import highestPeaks
import parseAllExampleFiles
import hasPeak
import find_abundant_precursors
import compareSpectra
import chromatogram
import accessAllData
# import searchScan

def main():
    
    print(highestPeaks.main(), 'highestPeaks.py')
    print(parseAllExampleFiles.main(), 'parseAllExampleFiles.py')
    print(hasPeak.main(), 'hasPeak.py')
    print(accessAllData.main(), 'accessAllData.py')
    print(find_abundant_precursors.main(), 'find_abundant_precursors.py')
    print(compareSpectra.main(), 'compareSpectra.py')
    print(chromatogram.main(), 'chromatogram.py')
    # print(searchScan.main(), 'searchScan.py')
    
    


if __name__ == '__main__':
    main()