Skip to content

Commit b6e5d10

Browse files
committed
Corrected a bug with the TCS output writing.
1 parent da621f0 commit b6e5d10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BAM_to_TCS.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def TCSwriter(bamfile_name):
9393
TCS_line += " " * (24 - len(refs))
9494
# padPos
9595
TCS_line += " " * (5 - len(str(padPos)))
96-
TCS.write(str(padPos))
96+
TCS_line += str(padPos)
9797
# unpadPos
9898
TCS_line += " " * (8 - len(str(unpadPos)))
9999
TCS_line += str(unpadPos)

0 commit comments

Comments
 (0)