mirror of
https://github.com/baker-laboratory/RoseTTAFold-All-Atom.git
synced 2024-11-04 22:25:42 +00:00
fix(data): match input format in multimer prediction
Return as dictionary. Closes baker-laboratory/RoseTTAFold-All-Atom#11 (supersedes). Fixes baker-laboratory/RoseTTAFold-All-Atom#12.
This commit is contained in:
parent
156e25ee49
commit
bd57e10676
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ def merge_a3m_homo(msa_orig, ins_orig, nmer, mode="default"):
|
||||||
ins[N:, start:start+L] = ins_orig[1:]
|
ins[N:, start:start+L] = ins_orig[1:]
|
||||||
start += L
|
start += L
|
||||||
|
|
||||||
return msa, ins
|
return {"msa": msa, "ins": ins}
|
||||||
|
|
||||||
def merge_msas(a3m_list, L_s):
|
def merge_msas(a3m_list, L_s):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue