Codebase list porechop / upstream/0.2.3 porechop-runner.py
upstream/0.2.3

Tree @upstream/0.2.3 (Download .tar.gz)

porechop-runner.py @upstream/0.2.3raw · 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()