1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 13 May 2020 08:56:48 +0200
Description: Add missing shebang lines
--- a/pybedtools/scripts/annotate.py
+++ b/pybedtools/scripts/annotate.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
"""
annotate a file with the nearest features in another.
--- a/pybedtools/scripts/examples/pbt_plotting_example.py
+++ b/pybedtools/scripts/examples/pbt_plotting_example.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
import time
import os
import pybedtools
|