Package: nxtrim / 0.4.3+dfsg-3

make-script-executable.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Add shebang for script file
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2021-04-05
--- a/scripts/count_orientation.py
+++ b/scripts/count_orientation.py
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
 import sys,pysam,itertools,time,collections
 
 
@@ -51,4 +53,4 @@
                 
 
     for k in ['FR','RF','FF','RR']:
-        print k,d[k]
+        print(k,d[k])