Mercurial > repos > brenninc > subread_featurecounts1_5_0_p1
changeset 2:abc729336fd0 draft default tip
Uploaded bug fix
| author | brenninc |
|---|---|
| date | Fri, 06 May 2016 09:46:28 -0400 |
| parents | c15850c85232 |
| children | |
| files | name_changer.py |
| diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/name_changer.py Thu May 05 06:29:26 2016 -0400 +++ b/name_changer.py Fri May 06 09:46:28 2016 -0400 @@ -86,11 +86,8 @@ start_header = ["Geneid", "Chr", "Start", "End", "Strand", "Length"] header_line = fix_header_line(start_header, input_file.readline(), new_names) output_file.write(header_line) - count = 0 for line in input_file: - count += 1 - if count < 5: - output_file.write(line) + output_file.write(line) with open(options.raw_summary_file, "r") as input_file: with open(options.fixed_summary_file, "w") as output_file:
