-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcanonicalAA.h
executable file
·144 lines (126 loc) · 1.95 KB
/
canonicalAA.h
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
struct _ARG {
int nbRot;
int nbAtoms;
int atypes[11];
double charges[11];
double coords[81][11][3];
};
struct _ASN {
int nbRot;
int nbAtoms;
int atypes[5];
double charges[5];
double coords[18][5][3];
};
struct _ASP {
int nbRot;
int nbAtoms;
int atypes[3];
double charges[3];
double coords[9][3][3];
};
struct _CYS {
int nbRot;
int nbAtoms;
int atypes[2];
double charges[2];
double coords[3][2][3];
};
struct _GLN {
int nbRot;
int nbAtoms;
int atypes[6];
double charges[6];
double coords[36][6][3];
};
struct _GLU {
int nbRot;
int nbAtoms;
int atypes[4];
double charges[4];
double coords[27][4][3];
};
struct _HIS {
int nbRot;
int nbAtoms;
int atypes[5];
double charges[5];
double coords[9][5][3];
};
struct _ILE {
int nbRot;
int nbAtoms;
int atypes[3];
double charges[3];
double coords[9][3][3];
};
struct _LEU {
int nbRot;
int nbAtoms;
int atypes[3];
double charges[3];
double coords[9][3][3];
};
struct _LYS {
int nbRot;
int nbAtoms;
int atypes[7];
double charges[7];
double coords[81][7][3];
};
struct _MET {
int nbRot;
int nbAtoms;
int atypes[3];
double charges[3];
double coords[27][3][3];
};
struct _PHE {
int nbRot;
int nbAtoms;
int atypes[6];
double charges[6];
double coords[6][6][3];
};
struct _PRO {
int nbRot;
int nbAtoms;
int atypes[2];
double charges[2];
double coords[2][2][3];
};
struct _SER {
int nbRot;
int nbAtoms;
int atypes[2];
double charges[2];
double coords[3][2][3];
};
struct _THR {
int nbRot;
int nbAtoms;
int atypes[3];
double charges[3];
double coords[3][3][3];
};
struct _TRP {
int nbRot;
int nbAtoms;
int atypes[10];
double charges[10];
double coords[9][10][3];
};
struct _TYR {
int nbRot;
int nbAtoms;
int atypes[8];
double charges[8];
double coords[6][8][3];
};
struct _VAL {
int nbRot;
int nbAtoms;
int atypes[2];
double charges[2];
double coords[3][2][3];
};