File: porechop-runner.py

package info (click to toggle)
porechop 0.2.4%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,192 kB
  • sloc: python: 3,060; cpp: 168; makefile: 43; sh: 25
file content (9 lines) | stat: -rwxr-xr-x 175 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3
"""
Convenience wrapper for running Porechop directly from source tree.
"""

from porechop.porechop import main
 
if __name__ == '__main__':
    main()