Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/irmsd/interfaces/ase_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def get_irmsd_ase(

def sorter_irmsd_ase(
atoms_list: Sequence["ase.Atoms"],
rthr: float,
rthr: float = 0.125, # aligned with '--rthr' in src/irmsd/cli.py
iinversion: int = 0,
allcanon: bool = True,
printlvl: int = 0,
Expand Down
4 changes: 2 additions & 2 deletions src/irmsd/interfaces/mol_interface.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import Sequence, Tuple
from typing import Sequence, Tuple, List

import numpy as np

Expand Down Expand Up @@ -230,7 +230,7 @@ def get_irmsd_molecule(

def sorter_irmsd_molecule(
molecule_list: Sequence[Molecule],
rthr: float,
rthr: float = 0.125, # aligned with '--rthr' in src/irmsd/cli.py
iinversion: int = 0,
allcanon: bool = True,
printlvl: int = 0,
Expand Down
2 changes: 1 addition & 1 deletion src/irmsd/interfaces/rdkit_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def get_irmsd_rdkit(

def sorter_irmsd_rdkit(
molecules: "Mol" | Sequence["Mol"],
rthr: float,
rthr: float = 0.125, # aligned with '--rthr' in src/irmsd/cli.py
iinversion: int = 0,
allcanon: bool = True,
printlvl: int = 0,
Expand Down
Loading