-
Notifications
You must be signed in to change notification settings - Fork 1
/
place_h.c
49 lines (33 loc) · 1.15 KB
/
place_h.c
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
#include "stride.h"
int PlaceHydrogens(CHAIN *Chain)
{
int Res, i, N, C, CA, H, PlacedCnt=0;
float Length_N_C, Length_N_CA, Length_N_H;
RESIDUE *r, *rr;
for( Res=1; Res<Chain->NRes; Res++ ) {
r = Chain->Rsd[Res];
rr = Chain->Rsd[Res-1];
if( !strcmp(r->ResType,"PRO") ) continue;
/* Replace deiterium atoms by hydrogens */
if( FindAtom(Chain,Res,"D",&H) )
strcmp(r->AtomType[H],"H");
if( !FindAtom(Chain,Res,"H",&H) && FindAtom(Chain,Res,"N",&N) &&
FindAtom(Chain,Res-1,"C",&C) && FindAtom(Chain,Res,"CA",&CA) ) {
H = r->NAtom;
Length_N_C = Dist(r->Coord[N],rr->Coord[C]);
Length_N_CA = Dist(r->Coord[N],r->Coord[CA]);
for( i=0; i<3; i++ )
r->Coord[H][i] = r->Coord[N][i] -
( (rr->Coord[C][i] - r->Coord[N][i])/Length_N_C +
(r->Coord[CA][i] - r->Coord[N][i])/Length_N_CA );
Length_N_H = Dist(r->Coord[N],r->Coord[H]);
for( i=0; i<3; i++ )
r->Coord[H][i] = r->Coord[N][i] +
DIST_N_H*(r->Coord[H][i]-r->Coord[N][i])/Length_N_H;
strcpy(r->AtomType[H],"H");
r->NAtom++;
PlacedCnt++;
}
}
return(PlacedCnt);
}