# HG changeset patch # User brenninc # Date 1462542388 14400 # Node ID abc729336fd05848babf90f22e75a7bc60e7a5a8 # Parent c15850c85232a7d162fd06ea1f03500224961523 Uploaded bug fix diff -r c15850c85232 -r abc729336fd0 name_changer.py --- 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: