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 found the code cutting protein sequence to no more than 1022 AAs.
df_test['Protein'] = df_test['Protein'].apply(lambda x: x[:1022] if len(x) > 1022 else x)
Would you please help explaining the reason of any other consideration?
I found the code cutting protein sequence to no more than 1022 AAs.
df_test['Protein'] = df_test['Protein'].apply(lambda x: x[:1022] if len(x) > 1022 else x)Would you please help explaining the reason of any other consideration?