Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kristyhoran committed Sep 29, 2024
1 parent 85197ac commit 4540436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tbtamr/Predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ def run_prediction(self) -> None:
mechs = self.collect_resistance_mechs(catalog=ctlg, variants=self.variants)
interpretation_rules = self.get_rules(rules = self.interpretation_rules)
classification_rules = self.get_rules(rules = self.classification_rules)
if self.check_var(catalog = ctlg) and self.check_rules_and_cols(rules = interpretation_rule, catalog = ctlg):
if self.check_var(catalog = ctlg) and self.check_rules_and_cols(rules = interpretation_rules, catalog = ctlg):
result = self.compare_mechs_rules(interpretation_rules = interpretation_rules, classification_rules=classification_rules,mechs=mechs, result = result)
self.make_line_list(result = result, cols = self.cols)
if self.cascade:
Expand Down

0 comments on commit 4540436

Please sign in to comment.