tgen / vcfMerger2

Dynamic vcfMerger for 2 to N somatic variants vcf files
Other
5 stars 1 forks source link

Main script cannot be executable without a shebang #1

Closed ryanrichholt closed 5 years ago

ryanrichholt commented 5 years ago

The main script here https://github.com/tgen/vcfMerger2/blob/master/bin/vcfMerger2.py will not work unless there is a shebang at the top. It's already executable, but without the right shebang, shells will just try to execute it as a shell script. Add this line to the top of the file:

#!/usr/bin/env python3
ChristopheLegendre commented 5 years ago