Unverified Commit 377f854c authored by Christina Floristean's avatar Christina Floristean Committed by GitHub
Browse files

Merge pull request #355 from dingquanyu/fix-non-permutation-codes

fixed the creation of best_align when permutation is turned off
parents 0ca66146 058fc74f
...@@ -2196,9 +2196,7 @@ class AlphaFoldMultimerLoss(AlphaFoldLoss): ...@@ -2196,9 +2196,7 @@ class AlphaFoldMultimerLoss(AlphaFoldLoss):
else: else:
per_asym_residue_index = AlphaFoldMultimerLoss.get_per_asym_residue_index(feature) per_asym_residue_index = AlphaFoldMultimerLoss.get_per_asym_residue_index(feature)
labels = AlphaFoldMultimerLoss.split_ground_truth_labels(ground_truth, best_align = list(enumerate(range(len(per_asym_residue_index))))
REQUIRED_FEATURES=["all_atom_mask","all_atom_positions"])
best_align = list(enumerate(range(len(labels))))
return best_align, per_asym_residue_index return best_align, per_asym_residue_index
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment