Skip to content

Commit

Permalink
Merge pull request #434 from peterjc/patch-5
Browse files Browse the repository at this point in the history
Fix percentage identity in Comparison __str__
  • Loading branch information
widdowquinn authored Aug 29, 2024
2 parents 69efdf6 + a82a3ba commit 6b8b262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyani/pyani_orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def __str__(self) -> str:
"Query: {}, Subject: {}, %%ID={}, ({} {}), FragSize: {}, MaxMatch: {}, KmerSize: {}, MinMatch: {}".format(
self.query_id,
self.subject_id,
self.perc_id,
self.identity,
self.program,
self.version,
self.fragsize,
Expand Down

0 comments on commit 6b8b262

Please sign in to comment.