We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b28aa commit 21c2e76Copy full SHA for 21c2e76
1 file changed
TCSfilter.py
@@ -19,7 +19,8 @@
19
20
def ListParser(infile_name, minqual, mincov):
21
"""Discard every line in the TCS file with a coverage below mincov and
22
- a qual below minqual."""
+ a qual below minqual. Returns a list of TCS lines that passed the
23
+ filtering criteria."""
24
TCS = open(infile_name, 'r')
25
if TCS.readline().startswith("#TCS") is False:
26
quit("Invalid input file. Use a TCS file as input.")
0 commit comments