Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Jun 25, 2024
1 parent e5e4b06 commit 8a09f74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fusion_report/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,13 @@ def export_results(self, path: str, extension: str) -> None:
output, delimiter=",", quotechar='"', quoting=csv.QUOTE_MINIMAL
)
# header
header = ["Fusion", "Databases", "Tools", "Score", "Explained score"]
header = ["Fusion", "Databases", "Score", "Explained score"]
header.extend([x for x in sorted(self.manager.running_tools)])
csv_writer.writerow(header)
for fusion in self.manager.fusions:
row: List[Any] = [
fusion.name,
[",".join(fusion.dbs)],
fusion.tools,
fusion.score,
fusion.score_explained,
]
Expand Down

0 comments on commit 8a09f74

Please sign in to comment.