Open rcrehuet opened 2 months ago
Oooh! This data is gold! I can use the individual scores to tweak the code further. I was missing something like this. Perhaps you could run a couple more peptides, if I need more data down the line?
I'll try to have a look at it this week.
In terms of accuracy of AGADIR I feel like I did some significant improvements to the code in spring. All of that is still stuck in a pull request though (https://github.com/reisalex/pyAGADIR/pull/3).
To answer your questions about errors in the code I would say yes, there are some. But that's mainly because it's really hard to parse the meaning of all those different publications. Been trying to improve on that to get correct predictions.
Maybe those values are not as useful as I thought. My expectation was that these would be energy terms. But I can't get it to make sense. It seems to me that the are not energy terms, but rather helicity values on a per residue basis.
The values I get in my revised version PR #3 are closer to what you get from the webserver, but still not correct.
res aa helix 1 I 0.00 2 L 0.92 3 K 1.69 4 S 3.16 5 L 29.31 6 E 29.86 7 E 30.39 8 F 30.69 9 L 30.42 10 K 29.36 11 V 24.27 12 T 19.34 13 L 17.60 14 R 11.32 15 S 3.89 16 T 2.25 17 R 1.37 18 Q 0.67 19 T 0.00
@rcrehuet If you would be so kind as to run the peptides below in 1s mode and share the result I might be able to debug the code.
AAAAAAAA SAAAAAAA AAAAAAAG SAAAAAAG
AAADAAAA AAAAKAAA AAAKKAAA AAADKAAA
ADAAAKAA ADAAKAAA AIAAALAA AIAALAAA
There are more, but these would be a good start.
Hi Martin. Do you mean to run them in the Agadir server?
----- On 21 Aug, 2024, at 13:57, Martin Engqvist @.***> wrote:
| @rcrehuet If you would be so kind as to run the peptides below in 1s mode and | share the result I might be able to debug the code.
| AAAAAAAA | SAAAAAAA | AAAAAAAG | SAAAAAAG
| AAADAAAA | AAAAKAAA | AAAKKAAA | AAADKAAA
| ADAAAKAA | ADAAKAAA | AIAAALAA | AIAALAAA
| There are more, but these would be a good start.
| — | Reply to this email directly, view it on GitHub , or unsubscribe . | You are receiving this because you were mentioned. Message ID: | <reisalex/pyAGADIR/issues/4/2301872453 @ github . com>
Yes, exactly! I need to know the correct output of some simple well-defined peptides. That way I can hopefully debug the code. Problem is I don't have an academic affiliation, so I can't run them myself.
Hi Martin, I attach the results for each of the peptides. A problem with Agadir server is that it does not specify which model it is using, nor can you chose the model. So it could be that it is not using the 1s model. But hope this helps anyway. Cheers, Ramon
----- On 2 Sep, 2024, at 12:17, Ramon Crehuet @.***> wrote:
| ----- On 26 Aug, 2024, at 08:40, Martin Engqvist @.***> | wrote:
|| Yes, exactly! I need to know the correct output of some simple well-defined || peptides. That way I can hopefully debug the code. Problem is I don't have an || academic affiliation, so I can't run them myself.
|| — || Reply to this email directly, view it on GitHub , or unsubscribe . || You are receiving this because you were mentioned. Message ID: || <reisalex/pyAGADIR/issues/4/2309445519 @ github . com>
I think the files were not attached in the email reply, so for the sake of completeness, here they are. peptides.zip
Thanks Ramon! I'll get to work on this and see what I can do.
I assume they are using the multiple sequence setting since that's their most recent one. For short peptides the result between 1s and ms are very similar according to their paper. (Figure 4 in https://doi.org/10.1002/(SICI)1097-0282(19970415)41:5%3C495::AID-BIP2%3E3.0.CO;2-H).
Reviewing Martin's work now!
Hi @rcrehuet we're investigating now. If you have any insights, please let us know.
As you note, the AGADIR webserver is not clear either as to which model it is using (presumably the newer model(s)). In this initial implementation I took a stab at the v1 model (from the 1994 paper). I had noticed that there wasn't perfect agreement, however the relative helicities seemed to be about right.
Hi Alex. Thanks for your message. I am currently working with @mengqvist to improve the model and correct it.
If I run the example sequence in the Agadir server I get the following result:
whereas using the
r
model gives these helicities:0.9 2.1 4.1 14.5 16.5 17.5 17.9 17.9 18.0 17.6 14.8 12.9 11.3 8.6 2.9 1.7 1.2 0.6 0.1
And the1s
models these ones:0.7 1.7 3.5 13.8 16.1 17.4 17.8 17.9 17.9 17.5 14.3 12.2 10.4 7.7 2.5 1.4 1.0 0.5 0.1
which are about half the values of the Agadir server. @mengqvist mentioned in this issue https://github.com/reisalex/pyAGADIR/issues/2 that he was getting values half the experimental ones. Could this be related? The problem is the server does not specify which values it is using, and it cites all Agadir publications, which really does not help. I could see that you use the parameters from Elucidating the Folding Problem of Helical Peptides using Empirical Parameters. II†. Helix Macrodipole Effects and Rational Modification of the Helical Content of Natural Peptides Do you know if the disagreement is only caused by the use of different models (surprising for such a large difference) or could there be an error in the code?