Merge remote-tracking branch 'remotes/origin/master'

This commit is contained in:
Heng Li 2018-09-14 22:22:20 -04:00
commit 0b681e51e7
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python
import sys, getopt
import sys
import getopt
import mappy as mp
def main(argv):
@ -17,7 +18,8 @@ def main(argv):
print(" -c output the cs tag")
sys.exit(1)
preset, min_cnt, min_sc, k, w, bw, out_cs = None, None, None, None, None, None, False
preset = min_cnt = min_sc = k = w = bw = None
out_cs = False
for opt, arg in opts:
if opt == '-x': preset = arg
elif opt == '-n': min_cnt = int(arg)