Missing shebang in extractreads.py and extractreads2.py
The files extractreads.py
and extractreads2.py
miss the shebang.
Consequences are:
-
extractreads.py
andextractreads2.py
do not work when installing with 'python setup.py install' - help switch (-h or --help) doesn't work for
extractreads.py
andextractreads2.py
Adding the following shebang at the start of extractreads.py
and extractreads2.py
fixes the issue:
#!/usr/local/bin/python
Edit: related patches