oushujun / LTR_retriever

LTR_retriever is a highly accurate and sensitive program for identification of LTR retrotransposons; The LTR Assembly Index (LAI) is also included in this package.
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5813529/
GNU General Public License v3.0
177 stars 40 forks source link

Fix shebang lines and make them more consistent. #68

Closed jebrosen closed 4 years ago

jebrosen commented 4 years ago

On linux (I am not sure about macOS), #!/usr/bin/env perl -w attempts to run a program literally named perl -w which does not exist. Shebang lines are now:

Scripts that had perl -w now have a use warnings; line.


This should only really be necessary for scripts that might be invoked from other programs i.e. LAI and LTR_Retriever, but this change can benefit anyone who might try to reuse or work with the scripts in bin/.

oushujun commented 4 years ago

Thank you very much for fixing the shebang line!