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
With a toy example, my contig string is 'A 20 E 10' with a modified pdb structure. The output sequence is:
TTCCPSIRSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN/RRRNNDKPVDMLYPMVAMEMTLGSEFEVME
In the above output, the two target sequences (chain A and E) are combined, followed by "/", then followed by two binder sequences (20 + 10). There is no separation "/" between the two targets and the two binders.
Some initial tracing of the code points to line 27 in af.prep._prep_binder
self._lengths only contain two elements. This is later passed on to the mpnn code, leading to mpnn think there are only two chains in sequence output. I can certainly read the sequences from the final PDB file, just wonder if this is something that needs to be fixed.
Thanks!
The text was updated successfully, but these errors were encountered:
On Sat, May 13, 2023, 1:44 AM Yingyao Zhou ***@***.***> wrote:
With a toy example, my contig string is 'A 20 E 10' with a modified pdb
structure. The output sequence is:
TTCCPSIRSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN/RRRNNDKPVDMLYPMVAMEMTLGSEFEVME
In the above output, the two target sequences (chain A and E) are
combined, followed by "/", then followed by two binder sequences (20 + 10).
There is no separation "/" between the two targets and the two binders.
Some initial tracing of the code points to line 27 in af.prep._prep_binder
self._lengths = [self._target_len, self._binder_len]
self._lengths only contain two elements. This is later passed on to the
mpnn code, leading to mpnn think there are only two chains in sequence
output. I can certainly read the sequences from the final PDB file, just
wonder if this is something that needs to be fixed.
Thanks!
—
Reply to this email directly, view it on GitHub
<#141>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA76LAUH5ZU2YGMEATORZTLXF4NUZANCNFSM6AAAAAAYAJCKPQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
With a toy example, my contig string is 'A 20 E 10' with a modified pdb structure. The output sequence is:
TTCCPSIRSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN/RRRNNDKPVDMLYPMVAMEMTLGSEFEVME
In the above output, the two target sequences (chain A and E) are combined, followed by "/", then followed by two binder sequences (20 + 10). There is no separation "/" between the two targets and the two binders.
Some initial tracing of the code points to line 27 in af.prep._prep_binder
self._lengths = [self._target_len, self._binder_len]
self._lengths only contain two elements. This is later passed on to the mpnn code, leading to mpnn think there are only two chains in sequence output. I can certainly read the sequences from the final PDB file, just wonder if this is something that needs to be fixed.
Thanks!
The text was updated successfully, but these errors were encountered: