robmaz / distmap

Sequence alignment on Hadoop
0 stars 1 forks source link

Change /usr/bin/perl for /usr/bin/env perl #55

Closed magicDGS closed 6 years ago

magicDGS commented 6 years ago

Currently, every script is using the header #!/usr/bin/perl, but this does not allow to have the PATH defaulting to a different binary: for example, if installed with brew, perl is under /usr/local/bin/perl.

Changing this to #!/usr/bin/env perl instead will solve the problem. In addition, there is a python script that should be changed too.

robmaz commented 6 years ago

Hopefully solved with #56