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 109.
This is how I fixed the bug ( don't know if it is right, though):
if args.redesigned_residues_multi:
with open(args.redesigned_residues_multi, "r") as fh:
redesigned_residues_multi = json.load(fh)
redesigned_residues_multi = { pdb:redesigned_residues.split() for pdb,redesigned_residues in redesigned_residues_multi.items() }