Corrected minor bug in utility script

This commit is contained in:
Oliver Henrich
2017-06-15 12:57:44 +01:00
parent 77ca68a2b4
commit c98bb7fa5f

View File

@ -45,7 +45,7 @@ try:
box_length = float(sys.argv[2]) box_length = float(sys.argv[2])
infile = sys.argv[3] infile = sys.argv[3]
except: except:
rint >> sys.stderr, "Usage: %s <%s> <%s> <%s>" % (sys.argv[0], \ print >> sys.stderr, "Usage: %s <%s> <%s> <%s>" % (sys.argv[0], \
"box offset", "box length", "file with sequences") "box offset", "box length", "file with sequences")
sys.exit(1) sys.exit(1)
box = np.array ([box_length, box_length, box_length]) box = np.array ([box_length, box_length, box_length])