Skip to content

Commit

Permalink
fixed black
Browse files Browse the repository at this point in the history
  • Loading branch information
svarona committed Dec 20, 2024
1 parent 6919048 commit f646cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relecov_tools/log_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def feed_logs_to_excel(key, logs, excel_outpath):
new_sheet.append(header)
regex = r"[\[\]]" # Regex to remove lists brackets
workbook["Global Report"].append(
[reg_remover(x, regex) for k, x in logs.items() if k != "samples"]
[reg_remover(x, regex) for k, x in logs.items() if k != "samples"]
)
regex = r"\[.*?\]" # Regex to remove ontology annotations between brackets
for sample, slog in samples_logs.items():
Expand Down

0 comments on commit f646cfe

Please sign in to comment.