You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think, after the files is loaded, the list of residues must be split like it is done at line 100.
This is how I fixed the bug ( don't know if it is right, though):
with open(args.fixed_residues_multi, "r") as fh:
fixed_residues_multi = json.load(fh)
fixed_residues_multi = { pdb:fixed_residues.split() for pdb,fixed_residues in fixed_residues_multi.items() }
Thank you again
The text was updated successfully, but these errors were encountered:
Hello,
thank you for the hard work you have been doing.
I think I spotted a bug at this line:
LigandMPNN/run.py
Line 98 in b161414
I think, after the files is loaded, the list of residues must be split like it is done at line 100.
This is how I fixed the bug ( don't know if it is right, though):
Thank you again
The text was updated successfully, but these errors were encountered: