Skip to content

Commit

Permalink
Add weight of solute to output.
Browse files Browse the repository at this point in the history
  • Loading branch information
hmcezar committed Dec 25, 2024
1 parent e607f4d commit a779308
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions clusttraj/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ def __str__(self) -> str:
if self.final_kabsch:
return_str += "Using final Kabsch rotation before computing RMSD\n"
return_str += f"Number of solute atoms: {self.solute_natoms}\n"
if self.weight_solute:
return_str += f"Weight of the solute atoms: {self.weight_solute}\n"
else:
return_str += "Unweighted RMSD according to solute/solvent.\n"
else:
return_str += "\nReordering all atom at the same time\n"

Expand Down

0 comments on commit a779308

Please sign in to comment.