Skip to content

Commit

Permalink
Handle an edge case for DynamicBind inference analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
amorehead committed May 29, 2024
1 parent 8f182bd commit b718d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/inference_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def create_mol_table(
f"After imputing missing (relaxed) predictions, still missing predictions for {mol_table['mol_pred'].isna().sum()} molecules regarding the following conditioning inputs: {mol_table[mol_table['mol_pred'].isna()]['mol_cond'].tolist()}."
)
else:
if cfg.method in ["diffdock", "vina", "tulip"]:
if cfg.method in ["diffdock", "dynamicbind", "vina", "tulip"]:
logger.warning(
f"Skipping missing predictions for {mol_table['mol_pred'].isna().sum()} molecules regarding the following conditioning inputs: {mol_table[mol_table['mol_pred'].isna()]['mol_cond'].tolist()}."
)
Expand Down

0 comments on commit b718d40

Please sign in to comment.