-
Notifications
You must be signed in to change notification settings - Fork 7
/
DASqv.c
720 lines (593 loc) · 19.6 KB
/
DASqv.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
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
/*******************************************************************************************
*
* Using overlap pile for each read compute estimated intrinisic quality values
*
* Author: Gene Myers
* Date : September 2015
*
*******************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include "DB.h"
#include "align.h"
#ifdef HIDE_FILES
#define PATHSEP "/."
#else
#define PATHSEP "/"
#endif
#undef QV_DEBUG
static char *Usage = "[-v] [-c<int>] <source:db> <overlaps:las> ...";
#define MAXQV 50 // Max QV score is 50
#define MAXQV1 51
#define MINCOV 2 // To have a score must be covered >= MINCOV in each direction (must be >0)
#define PARTIAL .20 // Partial terminal segments covering this percentage are scored
static int VERBOSE;
static int COVERAGE; // Estimated coverage of genome
static int QV_DEEP; // # of best diffs to average for QV score
static int HGAP_MIN; // Under this length do not process for HGAP
static int TRACE_SPACING; // Trace spacing (from .las file)
static int TBYTES; // Bytes per trace segment (from .las file)
static DAZZ_DB _DB, *DB = &_DB; // Data base
static int DB_FIRST; // First read of DB to process
static int DB_LAST; // Last read of DB to process (+1)
static int DB_PART; // 0 if all, otherwise block #
static FILE *QV_AFILE; // .qual.anno
static FILE *QV_DFILE; // .qual.data
static int64 QV_INDEX; // Current index into .qual.data file
// Statistics
static int64 nreads, totlen;
static int64 qgram[MAXQV1], sgram[MAXQV1];
// For each pile, calculate QV scores of the aread at tick spacing TRACE_SPACING
static void CALCULATE_QVS(int aread, Overlap *ovls, int novl)
{ static int nmax = 0;
static int *hist = NULL;
static int *cist = NULL;
static uint8 *qvec = NULL;
static int partial;
int alen, atick;
int *tick, *cick;
int i;
alen = DB->reads[aread].rlen;
atick = (alen + (TRACE_SPACING-1))/TRACE_SPACING;
if (alen < HGAP_MIN)
{ fwrite(&QV_INDEX,sizeof(int64),1,QV_AFILE);
return;
}
#if defined(QV_DEBUG)
printf("AREAD %d",aread);
if (novl == 0)
printf(" EMPTY");
printf("\n");
#endif
// QV SCORES
// Allocate or expand data structures for qv calculation as needed
if (atick > nmax)
{ nmax = atick*1.2 + 100;
hist = (int *) Realloc(hist,nmax*MAXQV1*sizeof(int),"Allocating histograms");
cist = (int *) Realloc(cist,nmax*MAXQV1*sizeof(int),"Allocating histograms");
qvec = (uint8 *) Realloc(qvec,nmax*sizeof(uint8),"Allocating QV vector");
if (hist == NULL || cist == NULL || qvec == NULL)
exit (1);
for (i = MAXQV1*nmax-1; i >= 0; i--)
hist[i] = cist[i] = 0;
partial = PARTIAL*TRACE_SPACING;
}
// For every segment, fill histogram of match diffs for every one of the
// atick intervals, building separate histograms, hist & cist, for forward
// and reverse B-hits
for (i = 0; i < novl; i++)
{ Path *path;
uint16 *trace;
int *ht;
int tlen, abit;
int a, b, x;
path = &(ovls[i].path);
trace = (uint16 *) path->trace;
tlen = path->tlen;
if (COMP(ovls[i].flags))
ht = cist;
else
ht = hist;
b = 0;
a = (path->abpos/TRACE_SPACING)*MAXQV1;
abit = (path->abpos % TRACE_SPACING);
if (abit != 0)
{ a += MAXQV1;
b += 2;
}
abit = (path->aepos % TRACE_SPACING);
if (abit != 0)
tlen -= 2;
while (b < tlen)
{ x = (int) ((200.*trace[b]) / (TRACE_SPACING + trace[b+1]));
if (x > MAXQV)
x = MAXQV;
ht[a + x] += 1;
a += MAXQV1;
b += 2;
}
if (path->aepos == alen && abit >= partial)
{ x = (int) ((200.*trace[tlen]) / (abit + trace[tlen+1]));
if (x > MAXQV)
x = MAXQV;
ht[a + x] += 1;
}
}
// For every segment, qv score is the maximum of the averages of the QV_DEEP lowest
// in the forward and reverse directions (if each is QV_DEEP), or the average
// of overlap scores (if between MINCOV and QV_DEEP-1), or MAXQV if no overlaps at all.
// Reset histogram for segment to zeros.
tick = hist;
cick = cist;
for (i = 0; i < atick; i++)
{ int v, y;
int qvn, qvc;
int cntn, cntc;
int sumn, sumc;
#ifdef QV_DEBUG
{ int min, max;
printf(" [%5d,%5d]:",i*TRACE_SPACING,(i+1)*TRACE_SPACING);
for (v = 0; v <= MAXQV; v++)
if (tick[v] > 0)
break;
min = v;
for (v = MAXQV; v >= 0; v--)
if (tick[v] > 0)
break;
max = v;
for (v = min; v <= max; v++)
if (tick[v] == 1)
printf(" %2d",v);
else if (tick[v] > 1)
printf(" %2d(%d)",v,tick[v]);
printf("\n :");
for (v = 0; v <= MAXQV; v++)
if (cick[v] > 0)
break;
min = v;
for (v = MAXQV; v >= 0; v--)
if (cick[v] > 0)
break;
max = v;
for (v = min; v <= max; v++)
if (cick[v] == 1)
printf(" %2d",v);
else if (cick[v] > 1)
printf(" %2d(%d)",v,cick[v]);
}
#endif
for (v = 0; v <= MAXQV; v++)
sgram[v] += tick[v] + cick[v];
cntn = sumn = 0;
for (v = 0; v <= MAXQV; v++)
{ y = tick[v];
tick[v] = 0;
cntn += y;
sumn += y*v;
if (cntn >= QV_DEEP)
{ sumn -= (cntn-QV_DEEP)*v;
cntn = QV_DEEP;
break;
}
}
for (v++; v <= MAXQV; v++)
tick[v] = 0;
cntc = sumc = 0;
for (v = 0; v <= MAXQV; v++)
{ y = cick[v];
cick[v] = 0;
cntc += y;
sumc += y*v;
if (cntc >= QV_DEEP)
{ sumc -= (cntc-QV_DEEP)*v;
cntc = QV_DEEP;
break;
}
}
for (v++; v <= MAXQV; v++)
cick[v] = 0;
if (cntn >= MINCOV)
qvn = sumn/cntn;
else
qvn = MAXQV;
if (cntc >= MINCOV)
qvc = sumc/cntc;
else
qvc = MAXQV;
if (qvn > qvc)
qvec[i] = (uint8) qvn;
else
qvec[i] = (uint8) qvc;
tick += MAXQV1;
cick += MAXQV1;
#ifdef QV_DEBUG
printf(" >> %2d(%d) %2d(%d) = %2d <<\n",qvn,cntn,qvc,cntc,qvec[i]);
#endif
}
// Accumulate qv histogram and append qv's to .qual file
for (i = 0; i < atick; i++)
qgram[qvec[i]] += 1;
nreads += 1;
totlen += alen;
fwrite(qvec,sizeof(uint8),atick,QV_DFILE);
QV_INDEX += atick;
fwrite(&QV_INDEX,sizeof(int64),1,QV_AFILE);
}
// Read in each successive pile and call ACTION on it. Read in the traces only if
// "trace" is nonzero
static int make_a_pass(FILE *input, void (*ACTION)(int, Overlap *, int), int trace)
{ static Overlap *ovls = NULL;
static int omax = 500;
static uint16 *paths = NULL;
static int pmax = 100000;
int64 i, j, novl;
int n, a;
int pcur;
int max;
if (ovls == NULL)
{ ovls = (Overlap *) Malloc(sizeof(Overlap)*omax,"Allocating overlap buffer");
if (ovls == NULL)
exit (1);
}
if (trace && paths == NULL)
{ paths = (uint16 *) Malloc(sizeof(uint16)*pmax,"Allocating path buffer");
if (paths == NULL)
exit (1);
}
rewind(input);
fread(&novl,sizeof(int64),1,input);
fread(&TRACE_SPACING,sizeof(int),1,input);
if (TRACE_SPACING <= TRACE_XOVR)
TBYTES = sizeof(uint8);
else
TBYTES = sizeof(uint16);
if (Read_Overlap(input,ovls) != 0)
ovls[0].aread = INT32_MAX;
else if (trace)
{ if (ovls[0].path.tlen > pmax)
{ pmax = 1.2*(ovls[0].path.tlen)+10000;
paths = (uint16 *) Realloc(paths,sizeof(uint16)*pmax,"Expanding path buffer");
if (paths == NULL) exit (1);
}
fread(paths,TBYTES,ovls[0].path.tlen,input);
if (TBYTES == 1)
{ ovls[0].path.trace = paths;
Decompress_TraceTo16(ovls);
}
}
else
fseek(input,TBYTES*ovls[0].path.tlen,SEEK_CUR);
if (ovls[0].aread < DB_FIRST)
{ fprintf(stderr,"%s: .las file overlaps don't correspond to reads in block %d of DB\n",
Prog_Name,DB_PART);
exit (1);
}
pcur = 0;
n = max = 0;
for (j = DB_FIRST; j < DB_LAST; j++)
{ ovls[0] = ovls[n];
a = ovls[0].aread;
if (a != j)
n = 0;
else
{ if (trace)
memmove(paths,paths+pcur,sizeof(uint16)*ovls[0].path.tlen);
n = 1;
pcur = ovls[0].path.tlen;
while (1)
{ if (Read_Overlap(input,ovls+n) != 0)
{ ovls[n].aread = INT32_MAX;
break;
}
if (trace)
{ if (pcur + ovls[n].path.tlen > pmax)
{ pmax = 1.2*(pcur+ovls[n].path.tlen)+10000;
paths = (uint16 *) Realloc(paths,sizeof(uint16)*pmax,"Expanding path buffer");
if (paths == NULL) exit (1);
}
fread(paths+pcur,TBYTES,ovls[n].path.tlen,input);
if (TBYTES == 1)
{ ovls[n].path.trace = paths+pcur;
Decompress_TraceTo16(ovls+n);
}
}
else
fseek(input,TBYTES*ovls[n].path.tlen,SEEK_CUR);
if (ovls[n].aread != a)
break;
pcur += ovls[n].path.tlen;
n += 1;
if (n >= omax)
{ omax = 1.2*n + 100;
ovls = (Overlap *) Realloc(ovls,sizeof(Overlap)*omax,"Expanding overlap buffer");
if (ovls == NULL) exit (1);
}
}
if (n >= max)
max = n;
pcur = 0;
for (i = 0; i < n; i++)
{ ovls[i].path.trace = paths+pcur;
pcur += ovls[i].path.tlen;
}
}
ACTION(j,ovls,n);
}
if (ovls[n].aread < INT32_MAX)
{ fprintf(stderr,"%s: .las file overlaps don't correspond to reads in block %d of DB\n",
Prog_Name,DB_PART);
exit (1);
}
return (max);
}
int main(int argc, char *argv[])
{ char *root, *dpwd;
int64 novl;
int c;
DAZZ_EXTRA ex_hgap, ex_covr;
DAZZ_EXTRA ex_cest, ex_qvs, ex_dif;
char *cest_name = "Coverage Estimate";
char *qvs_name = "Histogram of QVs";
char *dif_name = "Histogram of Tile Differences";
int64 cover64;
// Process arguments
{ int i, j, k;
int flags[128];
char *eptr;
ARG_INIT("DASqv")
COVERAGE = -1;
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
switch (argv[i][1])
{ default:
ARG_FLAGS("v")
break;
case 'c':
ARG_POSITIVE(COVERAGE,"Voting depth")
break;
}
else
argv[j++] = argv[i];
argc = j;
VERBOSE = flags['v'];
if (argc < 3)
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage);
fprintf(stderr,"\n");
fprintf(stderr," -v: Verbose mode, output statistics as proceed.\n");
fprintf(stderr," -c: Use this as the average coverage (not DAScover estimate).\n");
exit (1);
}
}
// Open trimmed DB
{ int status;
status = Open_DB(argv[1],DB);
if (status < 0)
exit (1);
if (status == 1)
{ fprintf(stderr,"%s: Cannot be called on a .dam index: %s\n",Prog_Name,argv[1]);
exit (1);
}
if (DB->part)
{ fprintf(stderr,"%s: Cannot be called on a block: %s\n",Prog_Name,argv[1]);
exit (1);
}
Trim_DB(DB);
}
// Get .covr track information
{ FILE *afile;
char *aname;
int extra, cmax;
int64 *cgram;
aname = Strdup(Catenate(DB->path,".","covr",".anno"),"Allocating anno file");
if (aname == NULL)
exit (1);
afile = fopen(aname,"r");
if (afile == NULL)
{ fprintf(stderr,"%s: Must have a 'covr' track, run DAScover\n",Prog_Name);
exit (1);
}
fseeko(afile,0,SEEK_END);
extra = ftell(afile) - sizeof(int)*2;
fseeko(afile,-extra,SEEK_END);
ex_covr.nelem = 0;
if (Read_Extra(afile,aname,&ex_covr) != 0)
{ fprintf(stderr,"%s: Histogram extra missing from .covr track?\n",Prog_Name);
exit (1);
}
ex_hgap.nelem = 0;
if (Read_Extra(afile,aname,&ex_hgap) != 0)
{ fprintf(stderr,"%s: Hgap threshold extra missing from .covr track?\n",Prog_Name);
exit (1);
}
fclose(afile);
HGAP_MIN = (int) ((int64 *) (ex_hgap.value))[0];
cgram = (int64 *) (ex_covr.value);
cmax = ex_covr.nelem - 1;
if (COVERAGE < 0)
{ int i;
i = 0;
while (cgram[i+1] < cgram[i])
i += 1;
for (COVERAGE = i++; i < cmax; i++)
if (cgram[COVERAGE] < cgram[i])
COVERAGE = i;
}
if (COVERAGE >= 40)
QV_DEEP = COVERAGE/8;
else if (COVERAGE >= 20)
QV_DEEP = 5;
else if (COVERAGE >= 4)
QV_DEEP = COVERAGE/4;
else
{ fprintf(stderr,"%s: Average coverage is too low (< 4X), cannot infer qv's\n",Prog_Name);
exit (1);
}
}
// Setup extras
ex_cest.vtype = DB_INT; // Estimated coverage (same for every .las)
ex_cest.nelem = 1;
ex_cest.accum = DB_EXACT;
ex_cest.name = cest_name;
cover64 = COVERAGE;
ex_cest.value = &cover64;
ex_qvs.vtype = DB_INT; // Histogram of MAXQV1 trace-point diff counts
ex_qvs.nelem = MAXQV1;
ex_qvs.accum = DB_SUM;
ex_qvs.name = qvs_name;
ex_qvs.value = &qgram;
ex_dif.vtype = DB_INT; // Histogram of MAXQV1 intrinisic qv counts
ex_dif.nelem = MAXQV1;
ex_dif.accum = DB_SUM;
ex_dif.name = dif_name;
ex_dif.value = &sgram;
// For each .las file do
dpwd = PathTo(argv[1]);
root = Root(argv[1],".db");
for (c = 2; c < argc; c++)
{ Block_Looper *parse;
FILE *input;
parse = Parse_Block_LAS_Arg(argv[c]);
while ((input = Next_Block_Arg(parse)) != NULL)
{ DB_PART = 0;
DB_FIRST = 0;
DB_LAST = DB->nreads;
// Determine if overlap block is being processed and if so get first and last read
// from .db file
{ FILE *dbfile;
char buffer[2*MAX_NAME+100];
char *p, *eptr;
int i, part, nfiles, nblocks, cutoff, all, oindx;
int64 size;
p = rindex(Block_Arg_Root(parse),'.');
if (p != NULL)
{ part = strtol(p+1,&eptr,10);
if (*eptr == '\0' && eptr != p+1)
{ dbfile = Fopen(Catenate(dpwd,"/",root,".db"),"r");
if (dbfile == NULL)
exit (1);
if (fscanf(dbfile,DB_NFILE,&nfiles) != 1)
SYSTEM_READ_ERROR
for (i = 0; i < nfiles; i++)
if (fgets(buffer,2*MAX_NAME+100,dbfile) == NULL)
SYSTEM_READ_ERROR
if (fscanf(dbfile,DB_NBLOCK,&nblocks) != 1)
SYSTEM_READ_ERROR
if (fscanf(dbfile,DB_PARAMS,&size,&cutoff,&all) != 3)
SYSTEM_READ_ERROR
for (i = 1; i <= part; i++)
if (fscanf(dbfile,DB_BDATA,&oindx,&DB_FIRST) != 2)
SYSTEM_READ_ERROR
if (fscanf(dbfile,DB_BDATA,&oindx,&DB_LAST) != 2)
SYSTEM_READ_ERROR
fclose(dbfile);
DB_PART = part;
}
}
}
// Set up preliminary trimming track
if (DB_PART > 0)
{ QV_AFILE = Fopen(Catenate(dpwd,PATHSEP,root,
Numbered_Suffix(".",DB_PART,".qual.anno")),"w");
QV_DFILE = Fopen(Catenate(dpwd,PATHSEP,root,
Numbered_Suffix(".",DB_PART,".qual.data")),"w");
}
else
{ QV_AFILE = Fopen(Catenate(dpwd,PATHSEP,root,".qual.anno"),"w");
QV_DFILE = Fopen(Catenate(dpwd,PATHSEP,root,".qual.data"),"w");
}
if (QV_AFILE == NULL || QV_DFILE == NULL)
exit (1);
{ int size, length;
length = DB_LAST - DB_FIRST;
size = sizeof(int64);
fwrite(&length,sizeof(int),1,QV_AFILE);
fwrite(&size,sizeof(int),1,QV_AFILE);
QV_INDEX = 0;
fwrite(&QV_INDEX,sizeof(int64),1,QV_AFILE);
}
// Get trace point spacing information
fread(&novl,sizeof(int64),1,input);
fread(&TRACE_SPACING,sizeof(int),1,input);
// Initialize statistics gathering
{ int i;
nreads = 0;
totlen = 0;
for (i = 0; i <= MAXQV; i++)
qgram[i] = sgram[i] = 0;
}
if (VERBOSE)
{ printf("\n\nDASqv");
if (HGAP_MIN > 0)
printf(" -H%d",HGAP_MIN);
printf(" -c%d %s %s\n\n",COVERAGE,argv[1],Block_Arg_Root(parse));
fflush(stdout);
}
// Process each read pile
make_a_pass(input,CALCULATE_QVS,1);
// Write out extras and close .qual track
Write_Extra(QV_AFILE,&ex_hgap);
Write_Extra(QV_AFILE,&ex_cest);
Write_Extra(QV_AFILE,&ex_qvs);
Write_Extra(QV_AFILE,&ex_dif);
fclose(QV_AFILE);
fclose(QV_DFILE);
fclose(input);
// If verbose output statistics summary to stdout
if (VERBOSE)
{ int i;
int64 ssum, qsum;
int64 stotal, qtotal;
int gval, bval;
printf("\n Input: ");
Print_Number(nreads,7,stdout);
printf("reads, ");
Print_Number(totlen,12,stdout);
printf(" bases");
if (HGAP_MIN > 0)
{ printf(" (another ");
Print_Number((DB_LAST-DB_FIRST) - nreads,0,stdout);
printf(" were < H-length)");
}
printf("\n");
stotal = qtotal = 0;
for (i = 0; i <= MAXQV; i++)
{ stotal += sgram[i];
qtotal += qgram[i];
}
printf("\n Histogram of q-values (average %d best)\n",2*QV_DEEP);
printf("\n Input QV\n");
qsum = qgram[MAXQV];
ssum = sgram[MAXQV];
printf("\n %2d: %9lld %5.1f%% %9lld %5.1f%%\n\n",
MAXQV,sgram[MAXQV],(100.*ssum)/stotal,qgram[MAXQV],(100.*qsum)/qtotal);
bval = gval = -1;
qtotal -= qsum;
stotal -= ssum;
ssum = qsum = 0;
for (i = MAXQV-1; i >= 0; i--)
if (qgram[i] > 0)
{ ssum += sgram[i];
qsum += qgram[i];
printf(" %2d: %9lld %5.1f%% %9lld %5.1f%%\n",
i,sgram[i],(100.*ssum)/stotal,
qgram[i],(100.*qsum)/qtotal);
if ((100.*qsum)/qtotal > 7. && bval < 0)
bval = i;
if ((100.*qsum)/qtotal > 20. && gval < 0)
gval = i;
}
printf("\n Recommend \'DAStrim -g%d -b%d'\n\n",gval,bval);
}
}
Free_Block_Arg(parse);
}
// Clean up
free(dpwd);
free(root);
Close_DB(DB);
free(Prog_Name);
exit (0);
}