-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error analyzing output_saturation #20
Comments
I also encountered this problem, please ask if this problem has been solved? |
Same with me. Any suggestion on how to resolve it? |
Hi all, I am guessing that newer versions of Rosetta are returning different score terms. The GAM model was developed on Talaris score function output, and will only work on those scores. A fix should be to comment out the line ddg_scores_dfs.append( apply_zemu_gam(ddg_scores) ) that calls apply_zemu_gam. Can anyone confirm if that works? |
I updated the code to wrap the call to the GAM function in try/except block, which might also fix the issue by leaving out the GAM scores if they can't be run. |
Thank you very much, Kyle! |
I am not sure if I should ask this question here... |
My problem is solved, my input structure is a protein and a peptide binding complex. My initial input protein structure was faulty, then I docked it using a protein monomer and a peptide fragment, and the docked complex was ready for mutation using flex_ddg.
…------------------ 原始邮件 ------------------
发件人: ***@***.***>;
发送时间: 2022年8月17日(星期三) 凌晨5:16
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [Kortemme-Lab/flex_ddG_tutorial] Error analyzing output_saturation (Issue #20)
Same with me. Any suggestion on how to resolve it?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Hello,
I have used the flex ddG protocol perfectly before. However, this time I am attempting to analyze the results from a saturation mutagenesis run and get the following error while executing:
python3 analyze_flex_ddG.py output_saturation/
Traceback (most recent call last):
File "analyze_flex_ddG.py", line 215, in
analyze_output_folder( folder_to_analyze )
File "analyze_flex_ddG.py", line 194, in analyze_output_folder
ddg_scores_dfs.append( apply_zemu_gam(ddg_scores) )
File "analyze_flex_ddG.py", line 40, in apply_zemu_gam
assert( score_term in scores.columns )
AssertionError
I have used the same protocol for other projects with no issue, but this system is bringing up the error above.
Any ideas? @kylebarlow
The text was updated successfully, but these errors were encountered: