-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathisoform.c
227 lines (161 loc) · 5.42 KB
/
isoform.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
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <math.h>
// information we need for isoform creation
typedef struct
{
int *dons;
int *accs;
int *ds_start;
int *ac_start;
int *ds_end;
int *ac_end;
int dons_count;
int accs_count;
int seq_len;
int flank_size;
int min_ex;
int min_in;
int max_isoform_length;
int *isoform;
} SpliceSiteData;
/*******************\
prototype being used
\*******************/
// used for analysis seq
void assigner(SpliceSiteData *ssd, const int minin, const int minex, const int flank_size);
void allocate_da_array(SpliceSiteData *ssd, const char *seq);
void splice_site_reader(SpliceSiteData *ssd, const char *seq);
// used for print out array
void pointer_printer(const int *start, const int *end);
// creating isoform
void all_isoform(const SpliceSiteData *ssd, const int *donor, const int *acceptor, const int spot);
// ==================== test sequence ====================
char seq[] = "ACGTTGACGTAAGTAAAGCAGCGCCACGAGTAAGAGTAACCGTTTACC";
// ==================== execution ====================
int main(void){
SpliceSiteData ssd;
//remember to change those constant
//minin, minex, flank
assigner(&ssd, 2, 2, 2);
// allocate size to donor and acceptor
allocate_da_array(&ssd, seq);
// gathering data from the seq
splice_site_reader(&ssd, seq);
// if we wanna print donor and acceptor out for visual
pointer_printer(ssd.ds_start, ssd.ds_end);
pointer_printer(ssd.ac_start, ssd.ac_end);
all_isoform(&ssd, ssd.ds_start, ssd.ac_start, 0);
free(ssd.dons);
free(ssd.accs);
free(ssd.isoform);
return 0;
}
// set up initial condition about minin, minex, and flank size
void assigner(SpliceSiteData *ssd, const int minin, const int minex, const int flank_size)
{
ssd->min_in = minin;
ssd->min_ex = minex;
ssd->flank_size = flank_size;
}
// asign space to donor and acceptor site based on seq length
void allocate_da_array(SpliceSiteData *ssd, const char *seq)
{
size_t len = strlen(seq);
ssd->seq_len = len;
if (len <= 500)
{
ssd->dons = malloc ( 20 * sizeof(int) );
ssd->accs = malloc ( 20 * sizeof(int) );
}
else if (len > 500 && len <= 1500)
{
ssd->dons = malloc ( 100 * sizeof(int) );
ssd->accs = malloc ( 100 * sizeof(int) );
}
else if (len > 1500 && len <= 3000)
{
ssd->dons = malloc ( 150 * sizeof(int) );
ssd->accs = malloc ( 150 * sizeof(int) );
}
}
// gt; ag acceptor donor reader
void splice_site_reader(SpliceSiteData *ssd, const char *seq)
{
ssd->max_isoform_length = floor ( ( ssd->seq_len + 1 - 2 * ssd->flank_size - ssd-> min_ex ) / (ssd->min_ex + ssd->min_in) );
ssd->isoform = malloc ( ssd->max_isoform_length * sizeof(int) );
ssd->dons_count = 0;
ssd->accs_count = 0;
for (int i = ssd->flank_size+ ssd->min_ex ; i < ssd->seq_len - 1 - ssd->flank_size - ssd->min_ex; i++)
{
if (seq[i] == 'G' && seq[i+1] == 'T')
{
ssd->dons[ ssd->dons_count ] = i;
ssd->dons_count++;
}
else if (seq[i] =='A' && seq[i+1] == 'G')
{
ssd->accs[ ssd->accs_count ] = i;
ssd->accs_count++;
}
}
ssd->ds_start = ssd->dons;
ssd->ac_start = ssd->accs;
ssd->ds_end = ssd->ds_start + ssd->dons_count - 1;
ssd->ac_end = ssd->ac_start + ssd->accs_count - 1;
}
/*******************************\
printer session for easier debug
\*******************************/
// print donor and acceptor array with pointer \\
void pointer_printer(const int *start, const int *end)
{
for (const int *p = start; p <= end; p++ )
{
printf("%d\t", *p);
}
printf("\n");
}
// combinator
void all_isoform(const SpliceSiteData *ssd, const int *donor, const int *acceptor, int spot)
{
assert(spot % 2 == 0);
// whenever we are out of donor and acceptor, exit
if ( donor > ssd->ds_end || acceptor > ssd->ac_end)
{
return;
}
// creating a nested loop for imitating the intron formation
for (const int *p1 = donor; p1 <= ssd->ds_end ; p1++ )
{
// check the middle exon
if (spot != 0 && ( ( *p1 - ssd->isoform[spot - 1] ) < (ssd->min_ex + 1) ) )
{
continue;
}
// ==================================================================\\
// add whatever features we want to continue the loop if bad isoform \\
// ==================================================================\\
// update donor site
ssd->isoform[spot] = *p1;
// picking acceptors
for (const int *p2 = acceptor; p2 <= ssd->ac_end; p2++)
{
// check the middle intron length
if ( ( *p2 - *p1 ) < ( ssd->min_in - 1 ) )
{
continue;
}
// update acceptor site
ssd->isoform[spot + 1] = *p2;
pointer_printer( ssd->isoform, ssd->isoform + spot + 1 );
// ======================================================================\\
// here we could add the mRNA function which used to store and check then\\
// ======================================================================\\
// recursion, continue picking
all_isoform(ssd, p1, p2, spot + 2);
}
}
}