-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcover2tiling.cpp
More file actions
457 lines (377 loc) · 8.74 KB
/
Copy pathcover2tiling.cpp
File metadata and controls
457 lines (377 loc) · 8.74 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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
/*************************************************************************/
/* C O V E R 2 T I L I N G . C P P V. 0.1 */
/*************************************************************************/
/* */
/* Convert coverage file to TilingScan file format. */
/* http://github.com/TilingScan/cover2tiling */
/* */
/*************************************************************************/
/* J. M. Juanes, A. Miguel, L. J. Morales, J. E. Pérez-Ortín, V. Arnau */
/*************************************************************************/
/* By : V. Arnau & J.M. Juanes - 21 - April - 2015 */
/*************************************************************************/
#include <iostream>
using namespace std;
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define uchar unsigned char
#define LINEA 200
#define SOSTENIDO 35
const double min_value = 0.005;
//Define the structures
struct Chromosome;
struct Hits;
//Typedefs
typedef Chromosome * Chrs;
typedef Hits * Hit ;
//Structure Chromosome
struct Chromosome
{
string name;
int num;
Hit hit;
Chrs sig;
};
//Structure Hits
struct Hits
{
int nuc;
double val;
Hit sig;
};
//Start the array
void ArrayInit(int pos[], int val[], int start, int N)
{
for(int i = 0; i < N; i++)
{
//Starts the position
pos[i] = start + i;
//Starts the nucleotide value
val[i] = 0;
}
}
//Search in the array
void ArraySearchInsert(int pos[], int val[], int n_pos, int n_val, int N)
{
//Loop
for(int i = 0; i < N; i++)
{
//Search
if(pos[i] == n_pos)
{
//Insert
val[i] = n_val;
//Break
break;
}
}
}
//Calculate the average
double Average(int val[], int N)
{
//Vars
int sum = 0;
double av;
//Loop
for(int i = 0; i < N; i++)
{
//Increases the sum
sum = sum + val[i];
}
//Calculates the average
av = (double) sum/N;
//Warning if sum = 0
if(av < min_value)
{
av = min_value;
}
//Return
return av;
}
//Reads the coverage file
void ReadCoverage(string file, int N, Chrs & l)
{
//Vars
ifstream entrada;
string str_aux, str_read = "";
Chrs chr, chr_fin;
Hit hit, hit_fin;
int start = -1, get_pos, get_cov;
//Array
int arr_pos[N], arr_val[N];
//Start the list of chromosomes
l = NULL;
chr_fin = NULL;
//Open the file
entrada.open(file.c_str());
//Read all the file
while(!entrada.eof())
{
//Gets the name
entrada >> str_aux;
//Check white space
if(str_aux == "")
{
//Continue
continue;
}
//Check if is a new chromosome
if(str_aux != str_read)
{
//If is not the first time
if(start != -1)
{
//Ends the hit
hit = new Hits;
hit->nuc = (int) start + N/2;
hit->val = Average(arr_val, N);
hit->sig = NULL;
//Save
if(hit_fin == NULL)
{
chr_fin->hit = hit;
}
else
{
hit_fin->sig = hit;
}
//Increase the counter
//chr_fin->num = chr_fin->num + 1;
}
//Create a new chromosome
chr = new Chromosome;
chr->name = str_aux;
chr->num = 1;
chr->hit = NULL;
//Check if is the first
if(chr_fin == NULL)
{
//First
l = chr;
}
else
{
//Not the first
chr_fin->sig = chr;
}
//Get the next
chr_fin = chr;
//Restart the hits
hit_fin = NULL;
//Restart the counters
start = -1;
//Restart the str
str_read = str_aux;
}
//Gets the position - nucleotide - coverage - base read - quality
entrada >> get_pos >> str_aux >> get_cov >> str_aux >> str_aux;
//entrada >> get_pos >> get_cov;
//Check if start is defined
if(start == -1)
{
//Save the start
start = get_pos;
//start = 0;
//Initialize the array
ArrayInit(arr_pos, arr_val, start, N);
}
//Check if we have exceed the start + N
if(get_pos >= start + N)
{
//Finish
while(get_pos >= start + N)
{
//Next hit
hit = new Hits;
hit->nuc = (int) start + N/2;
hit->val = Average(arr_val, N);
hit->sig = NULL;
//Save
if(hit_fin == NULL)
{
chr_fin->hit = hit;
}
else
{
hit_fin->sig = hit;
}
//Get it nog
hit_fin = hit;
//Increase the counter
chr_fin->num = chr_fin->num + 1;
//Next
start = start + N;
ArrayInit(arr_pos, arr_val, start, N);
}
}
//Insert the position
ArraySearchInsert(arr_pos, arr_val, get_pos, get_cov, N);
//Clear
str_aux = "";
}
//Save the last
hit = new Hits;
hit->nuc = (int) start + N/2;
hit->val = Average(arr_val, N);
hit->sig = NULL;
//Save
if(hit_fin == NULL)
{
chr_fin->hit = hit;
}
else
{
hit_fin->sig = hit;
}
//Ends the chromosomes list
chr_fin->sig = NULL;
//Close the file
entrada.close();
}
//Save a file with the TilingScan format
void SaveFile(string file, Chrs l)
{
//Vars
ofstream salida;
Chrs c;
Hit h;
int cont = 1;
//Open the file
salida.open(file.c_str());
//Save the headers
salida << "# File generated with Cover2Tiling" << endl;
salida << "# http://github.com/TilingScan/cover2tiling" << endl;
//Starts the list
c = l;
//Read all chromosomes
while(c != NULL)
{
//New line
salida << endl;
//Save the chromosome header
salida << "# Sequence " << cont << endl;
salida << "# Name " << c->name << endl;
salida << "# Number Of Hits " << c->num << endl;
salida << endl;
//Hits
h = c->hit;
//Read all hits
while(h != NULL)
{
//Save
salida << h->nuc << " " << h->val << endl;
//Next hit
h = h->sig;
}
//Next chromosome
c = c->sig;
//Update cont
cont = cont + 1;
}
//Close the file
salida.close();
//Success!
cout << "File " << file << " is successfully generated!" << endl << endl;
}
//Check constant N
int CheckN(string c)
{
//Convert string to int
int n = atoi(c.c_str());
//First, check if n is > 0
if(n <= 0)
{
//Show error
cout << "Error: please, set N > 0" << endl << endl;
system("pause");
exit(0);
}
else
{
//Chech if n is odd
int m = (int) n/2;
if(2*m == n)
{
//Update n
n = n + 1;
//Show warning
cout << "Warning: We have changed N to " << n << " because it must be odd." << endl << endl;
}
}
//Return n
return n;
}
//Check if file exists
void FileExists(string file)
{
//File
ifstream entrada;
//Open the file
entrada.open(file.c_str());
//Check if file exists
if(!entrada)
{
//Show warning
cout << "Fatal error: " << file << " doesn't exists." << endl << endl;
system("pause");
exit(0);
}
//Close file
entrada.close();
}
//Check number of argumnets
void CheckArguments(int n)
{
//Check if the number of arguments are > 4
if(n < 4)
{
//Shows error
cout << "Fatal error: invalid arguments." << endl << endl;
cout << "How to use:" << endl << endl;
cout << "cover2tiling cover_file tiling_file N" << endl << endl;
cout << "Where:" << endl;
cout << "cover_file : Output file of samtools mpileup comand." << endl;
cout << "tiling_file : Output file to be used in http://tilingscan.uv.es/." << endl;
cout << "N : Average nucleotides for each hit. It must be odd." << endl << endl;
//Wait
system("pause");
//Exit
exit(0);
}
}
// Prints the header
void PrintHeader(void)
{
cout << endl;
cout << "========================================================" << endl;
cout << "= COVER2TILING =" << endl;
cout << "= http://github.com/TilingScan/cover2tiling =" << endl;
cout << "========================================================" << endl;
cout << "= V. Arnau & JM Juanes ==== 21-IV-2015 =" << endl;
cout << "= UNIVERSIDAD DE VALENCIA (SPAIN) =" << endl;
cout << "========================================================" << endl << endl;
}
// Main function
int main(int argc,char **argv)
{
//Number of nucleotrides
int N;
//List of chromosomes
Chrs l;
//Show the header
PrintHeader();
//Check the arguments
CheckArguments(argc);
//Check if coverage file exists :
FileExists(argv[1]);
//Check constant N:
N = CheckN(argv[3]);
//Read the input file
ReadCoverage(argv[1], N, l);
//Save to a file
SaveFile(argv[2], l);
//Exit
return 0;
}