Skip to content
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

Torsion angle: omega. #26

Closed
electronicsbyjulie opened this issue May 29, 2022 · 2 comments
Closed

Torsion angle: omega. #26

electronicsbyjulie opened this issue May 29, 2022 · 2 comments
Labels
enhancement New feature or request. invalid Issue is no longer relevant. low priority Not a show stopper, but should be addressed. wontfix This will not be worked on.

Comments

@electronicsbyjulie
Copy link
Contributor

This is the angle of the peptide bond, normally stuck in the trans position but typically distorted by steric effects from other atoms in the strand.

From https://en.wikipedia.org/wiki/Pi_helix:

The general formula for the rotation angle Ω per residue of any polypeptide helix with trans isomers is given by the equation
image

So the function in the Protein class that creates helices should make use of the above equation to rotate the omega bond according to the specified phi and psi angles. This can be done by applying a rotation to the whole amino acids, about the axis of the omega bond, without having to rotate any bonds within any amino acid.

@electronicsbyjulie electronicsbyjulie added enhancement New feature or request. low priority Not a show stopper, but should be addressed. labels May 29, 2022
@electronicsbyjulie
Copy link
Contributor Author

omega equation
Because the equation image in the original post looks like &$%# in dark mode.

@electronicsbyjulie
Copy link
Contributor Author

The formula gives incorrect results:

float omega(float phi, float psi)
{
	float f = (phi+psi)/2;
	f = pow(cos(f), 2)*4;
	f = (1.0-f)/3;
	float g = acos(f);
	return g;
}
Omega for alpha helix: 99.3832 degrees. ❌
Omega for beta sheet: 171.839 degrees.
Omega for 3.10 helix: 120.39 degrees.
Omega for pi helix: 87.1885 degrees. ❌
Omega for polyproline II helix: 124.149 degrees.
Omega for polyproline I helix: 113.044 degrees.
Omega for straight strand: 180 degrees.

The alpha and pi helices should have angles near 180 degrees.

@electronicsbyjulie electronicsbyjulie added invalid Issue is no longer relevant. wontfix This will not be worked on. labels Jun 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request. invalid Issue is no longer relevant. low priority Not a show stopper, but should be addressed. wontfix This will not be worked on.
Projects
None yet
Development

No branches or pull requests

1 participant