Skip to content

Commit

Permalink
Update inputs.py (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
amorehead authored Oct 1, 2024
1 parent 0b70ab9 commit 7258c56
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions alphafold3_pytorch/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3121,8 +3121,7 @@ def pdb_input_to_molecule_input(

if (
i.distillation
and not_exists(i.chains)
or (exists(i.chains) and not (exists(i.chains[0]) or exists(i.chains[1])))
and (not_exists(i.chains) or (exists(i.chains) and not (exists(i.chains[0]) or exists(i.chains[1]))))
):
chain_id_1, chain_id_2 = i.chains if exists(i.chains) else (None, None)

Expand Down

0 comments on commit 7258c56

Please sign in to comment.