File: set_omega.c

package info (click to toggle)
garlic 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,133
file content (146 lines) | stat: -rw-r--r-- 4,516 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Copyright (C) 2001-2003 Damir Zucic */

/*=============================================================================

				set_omega.c

Purpose:
	Set the omega angle  for each selected residue  in the given complex.
	A residue is treated  as selected  if the first atom  of this residue
	is selected.  For proteins,  this is typically the N atom (nitrogen).

Input:
	(1) Pointer to MolComplexS structure.
	(2) Pointer to ConfigS structure.
	(3) The omega angle in degrees.

Output:
	(1) Omega angle set for each selected residue in each caught complex.
	(2) Return value.

Return value:
	(1) Positive always (trivial).

Notes:
	(1) This function uses the atoms  N and CA of the current residue and
	    and the atoms CA and C of the previous residue.

========includes:============================================================*/

#include <stdio.h>

#include <string.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======function prototypes:=================================================*/

int		ExtractNCA_ (VectorS *, VectorS *, AtomS *, size_t, size_t);
int		ExtractCAC_ (VectorS *, VectorS *, AtomS *, size_t, size_t);
double		OmegaFromCACNCA_ (VectorS *, VectorS *, VectorS *, VectorS *,
				  ConfigS *);
int		RotateAtom_ (AtomS *, VectorS *, VectorS *, double);
int		DihedralAngles_ (MolComplexS *, ConfigS *);

/*======set omega angle(s):==================================================*/

int SetOmega_ (MolComplexS *mol_complexSP, ConfigS *configSP, double omega_new)
{
int			residuesN, residueI;
size_t			atomsN, atomI;
ResidueS		*current_residueSP;
AtomS			*first_atomSP;
size_t			current_startI, current_endI;
int			n;
static VectorS		N_vectorS, CA_vectorS;
ResidueS		*previous_residueSP;
size_t			previous_startI, previous_endI;
static VectorS		previousCA_vectorS, previousC_vectorS;
double			omega_old, delta_omega;
AtomS			*atomSP;

/* Copy the number of residues in the specified complex: */
residuesN = mol_complexSP->residuesN;

/* Copy the number of atoms in the specified complex: */
atomsN = mol_complexSP->atomsN;

/* Scan residues, but skip the first one: */
for (residueI = 1; residueI < residuesN; residueI++)
	{
	/* Pointer to the current residue: */
	current_residueSP = mol_complexSP->residueSP + residueI;

	/* Pointer to the first atom of this residue: */
	first_atomSP = mol_complexSP->atomSP +
		       current_residueSP->residue_startI;

	/* If the first atom of this residue is not */
	/* selected,  the residue  is not selected: */
	if (first_atomSP->selectedF == 0) continue;

	/* The range of atomic indices for the current residue: */
	current_startI = current_residueSP->residue_startI;
	current_endI   = current_residueSP->residue_endI;

	/* Try to extract N and CA coordinates for the current residue: */
	n = ExtractNCA_ (&N_vectorS, &CA_vectorS,
			 mol_complexSP->atomSP, current_startI, current_endI);
	if (n < 2) continue;

	/* The CA and C atoms of the previous residue are required. */

	/* Pointer to the previous residue: */
	previous_residueSP = mol_complexSP->residueSP + residueI - 1;

	/* The atomic index range for the previous residue: */
	previous_startI = previous_residueSP->residue_startI;
	previous_endI   = previous_residueSP->residue_endI;

	/* Extract CA and C coordinates from the previous residue: */
	n = ExtractCAC_ (&previousCA_vectorS, &previousC_vectorS,
			 mol_complexSP->atomSP,
			 previous_startI, previous_endI);
	if (n < 2) continue;

	/* Calculate and check the old omega: */
	omega_old = OmegaFromCACNCA_ (&previousCA_vectorS, &previousC_vectorS,
				      &N_vectorS, &CA_vectorS,
				      configSP);
	if (omega_old == BADDIHEDANGLE) continue;

	/* Calculate the difference: */
	delta_omega = omega_new - omega_old;

        /* Rotate all atoms of the current residue and all */
        /* atoms after the current residue about C-N bond: */
	for (atomI = current_startI; atomI < atomsN; atomI++)
		{
		/* Pointer to the current atom: */
		atomSP = mol_complexSP->atomSP + atomI;

		/* Rotate the current atom about N-CA bond: */
		RotateAtom_ (atomSP,
			     &previousC_vectorS, &N_vectorS, delta_omega);
                }
	}

/* Update dihedral angles and cis-trans flags: */
DihedralAngles_ (mol_complexSP, configSP);

/* Set the position_changedF: */
mol_complexSP->position_changedF = 1;

/* Return positive value (trivial): */
return 1;
}

/*===========================================================================*/