Skip to content

Commit e7c37d9

Browse files
committed
Corrcted a bug when running the module as a standalone script.
1 parent b6e5d10 commit e7c37d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

TCSfilter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ def RunModule(infile_name, outfile_name, minqual, mincov):
7171
if __name__ == "__main__":
7272
# Usage: python3 TCSfilter.py file.tcs minqual mincov
7373
from sys import argv
74-
RunModule(argv[1], argv[2], argv[3])
74+
RunModule(argv[1], argv[2], int(argv[3]), int(argv[4]))

0 commit comments

Comments
 (0)