-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBasicBio.c
More file actions
261 lines (200 loc) · 4.75 KB
/
Copy pathBasicBio.c
File metadata and controls
261 lines (200 loc) · 4.75 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "BasicBio.h"
/* List of Functions
*
* MBB_MinInt
* MBB_MaxInt
* MBB_MinFloat
* MBB_MaxFloat
* MBB_SortInts
* MBB_SortFloats
* MBB_DNAtoNum
* MBB_TranslateCodon
* MBB_AminoAliScore
*
*/
// Function: MBB_MinInt
int MBB_MinInt (int a, int b) {
if (a < b) return a;
return b;
}
// Function: MBB_MaxInt
int MBB_MaxInt (int a, int b) {
if (a > b) return a;
return b;
}
// Function: MBB_MinFloat
float MBB_MinFloat (float a, float b) {
if (a < b) return a;
return b;
}
// Function: MBB_MaxFloat
float MBB_MaxFloat (float a, float b) {
if (a > b) return a;
return b;
}
/*
* Function: MBB_SortInts
*
*/
void MBB_SortInts (int * Vals, int * Index, int num_vals) {
int i,j,k,j_lim,k_lim;
int * Read = malloc(num_vals*sizeof(int));
int * Write = malloc(num_vals*sizeof(int));
int * Swap;
// Initialize the index
for (i=0; i<num_vals; i++)
Read[i] = i;
// Merge sort
int blocksize = 1;
int num_blocks = num_vals / blocksize;
int pos = 0;
while (num_blocks) {
for (i=0; i+blocksize<num_vals; i+=2*blocksize) {
j = i;
j_lim = j+blocksize;
k = j_lim;
k_lim = k+blocksize;
if (k_lim>num_vals)
k_lim = num_vals;
while (j<j_lim && k<k_lim) {
if (Vals[Read[j]]<Vals[Read[k]])
Write[pos++] = Read[j++];
else
Write[pos++] = Read[k++];
}
while (j<j_lim)
Write[pos++] = Read[j++];
while (k<k_lim)
Write[pos++] = Read[k++];
}
// If we didn't have enough to fill up a full block, we'll still need to
// copy over the final values into 'Write'
while (i<num_vals)
Write[pos++] = Read[i++];
// Read becomes write, write becomes read, the first shall be last, etc!
Swap = Read;
Read = Write;
Write = Swap;
// Brace yourselves for another iteration!
num_blocks /= 2;
blocksize *= 2;
pos = 0;
}
// Our final sorted index is stored in 'Read'
for (i=0; i<num_vals; i++)
Index[i] = Read[i];
free(Read);
free(Write);
}
/*
* Function: MBB_SortFloats
*
*/
void MBB_SortFloats (float * Vals, int * Index, int num_vals) {
int i,j,k,j_lim,k_lim;
int * Read = malloc(num_vals*sizeof(int));
int * Write = malloc(num_vals*sizeof(int));
int * Swap;
// Initialize the index
for (i=0; i<num_vals; i++)
Read[i] = i;
// Merge sort
int blocksize = 1;
int num_blocks = num_vals / blocksize;
int pos = 0;
while (num_blocks) {
for (i=0; i+blocksize<num_vals; i+=2*blocksize) {
j = i;
j_lim = j+blocksize;
k = j_lim;
k_lim = k+blocksize;
if (k_lim>num_vals)
k_lim = num_vals;
while (j<j_lim && k<k_lim) {
if (Vals[Read[j]]<Vals[Read[k]])
Write[pos++] = Read[j++];
else
Write[pos++] = Read[k++];
}
while (j<j_lim)
Write[pos++] = Read[j++];
while (k<k_lim)
Write[pos++] = Read[k++];
}
// If we didn't have enough to fill up a full block, we'll still need to
// copy over the final values into 'Write'
while (i<num_vals)
Write[pos++] = Read[i++];
// Read becomes write, write becomes read, the first shall be last, etc!
Swap = Read;
Read = Write;
Write = Swap;
// Brace yourselves for another iteration!
num_blocks /= 2;
blocksize *= 2;
pos = 0;
}
// Our final sorted index is stored in 'Read'
for (i=0; i<num_vals; i++)
Index[i] = Read[i];
free(Read);
free(Write);
}
/*
* Function: MBB_DNAtoNum
*
*/
int MBB_DNAtoNum (char residue) {
// Set to uppercase
if (residue > 96)
residue -= 32;
// Find character
if (residue < 69) {
if (residue == 65) return 0;
if (residue == 67) return 1;
} else {
if (residue == 71) return 2;
if (residue == 84) return 3;
if (residue == 85) return 3;
}
return -1;
}
/*
* Function: MBB_AminoToIndex
*
*/
int MBB_AminoToIndex (char residue) {
if (residue >= 97) residue -= 32;
if (residue < 65 || residue > 90)
return -1;
return MBB_AMINO_INDEX[residue-65];
}
/*
* Function: MBB_TranslateCodon
*
*/
char MBB_TranslateCodon (char * Codon) {
int index = MBB_DNAtoNum(*Codon)<<4;
index += MBB_DNAtoNum(*(Codon+1))<<2;
index += MBB_DNAtoNum(*(Codon+2));
return MBB_CODON_TABLE[index];
}
/*
* Function: MBB_AminoAliScore
*
*/
float MBB_AminoAliScore (char amino1, char amino2) {
// Make sure we're uppercase
if (amino1 > 96) amino1 -= 32;
if (amino2 > 96) amino2 -= 32;
int index1 = MBB_AMINO_INDEX[amino1-65];
int index2 = MBB_AMINO_INDEX[amino2-65];
// Invalid chars get the big -inf
if (index1 < 0 || index2 < 0)
return MBB_NINF;
return MBB_BLOSUM62[21 * index1 + index2];
}