Skip to content

Commit

Permalink
Merge pull request #553 from haddocking/revert-543-iss542
Browse files Browse the repository at this point in the history
Revert "changed retrieve_models logic"
  • Loading branch information
mgiulini authored Sep 14, 2022
2 parents ee9b4d5 + b0042f9 commit b12bec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/haddock/libs/libontology.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def retrieve_models(self, crossdock=False, individualize=False):
raise Exception(_msg)

# prepare pairwise combinations
model_list = [pdb[0] for pdb in input_dic.values()]
model_list = [values for values in zip(*input_dic.values())]
elif input_dic and crossdock and not individualize:
model_list = [
values for values in itertools.product(*input_dic.values())
Expand Down

0 comments on commit b12bec4

Please sign in to comment.