Codebase list porechop / debian/latest porechop-runner.py
debian/latest

Tree @debian/latest (Download .tar.gz)

porechop-runner.py @debian/latestraw · history · blame

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()