diff pairend_distro.py @ 2:1a4662c69bee draft

"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy-sv commit 07c73df696d6d80e03f03232603d713882131625"
author artbio
date Mon, 11 May 2020 23:36:00 +0000
parents a1225091082c
children aa9409835045
line wrap: on
line diff
--- a/pairend_distro.py	Thu May 07 23:34:27 2020 +0000
+++ b/pairend_distro.py	Mon May 11 23:36:00 2020 +0000
@@ -62,11 +62,11 @@
 L = []
 c = 0
 
-for l in sys.stdin:
+for length in sys.stdin:
     if c >= options.N:
         break
 
-    A = l.rstrip().split('\t')
+    A = length.rstrip().split('\t')
     flag = int(A[SAM_FLAG])
     refname = A[SAM_REFNAME]
     mate_refname = A[SAM_MATE_REFNAME]