diff --git a/tools/repenrich2/RepEnrich2.py b/tools/repenrich2/RepEnrich2.py index 70cf09c2..fb89802b 100644 --- a/tools/repenrich2/RepEnrich2.py +++ b/tools/repenrich2/RepEnrich2.py @@ -117,7 +117,7 @@ def run_bowtie(args): # print unique mapper counts with open("unique_mapper_counts.tsv", 'w') as fout: - fout.write(f"#element\tcount\n") + fout.write("#element\tcount\n") for count in sorted(counts): fout.write(f"{count}\t{counts[count]}\n")