Skip to content

Commit

Permalink
fix: update input key check tcr-dist
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTenmann committed Dec 10, 2021
1 parent 1d6d5f1 commit 45ece4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setriq/modules/distances.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def default_definition(self) -> List[tuple]:

def forward(self, sequences: List[Dict[str, str]]) -> List[float]:
# check the input keys provided -- assumes consistency
self._check_input_format(sequences[0])
self._check_input_format(pd.DataFrame(sequences).columns)

# iterate through components and collect component output
out = []
Expand Down

0 comments on commit 45ece4e

Please sign in to comment.