Skip to content

Commit 21c2e76

Browse files
committed
Better PEP8 conformance.
1 parent a0b28aa commit 21c2e76

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

TCSfilter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919

2020
def ListParser(infile_name, minqual, mincov):
2121
"""Discard every line in the TCS file with a coverage below mincov and
22-
a qual below minqual."""
22+
a qual below minqual. Returns a list of TCS lines that passed the
23+
filtering criteria."""
2324
TCS = open(infile_name, 'r')
2425
if TCS.readline().startswith("#TCS") is False:
2526
quit("Invalid input file. Use a TCS file as input.")

0 commit comments

Comments
 (0)