This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
forked from thegenemyers/DALIGNER
-
Notifications
You must be signed in to change notification settings - Fork 17
/
LA4Ice.c
568 lines (503 loc) · 18 KB
/
LA4Ice.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
/************************************************************************************\
* *
* Copyright (c) 2014, Dr. Eugene W. Myers (EWM). All rights reserved. *
* *
* Redistribution and use in source and binary forms, with or without modification, *
* are permitted provided that the following conditions are met: *
* *
* · Redistributions of source code must retain the above copyright notice, this *
* list of conditions and the following disclaimer. *
* *
* · Redistributions in binary form must reproduce the above copyright notice, this *
* list of conditions and the following disclaimer in the documentation and/or *
* other materials provided with the distribution. *
* *
* · The name of EWM may not be used to endorse or promote products derived from *
* this software without specific prior written permission. *
* *
* THIS SOFTWARE IS PROVIDED BY EWM ”AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, *
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND *
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EWM BE LIABLE *
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES *
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS *
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY *
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN *
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
* *
* For any issues regarding this software and its use, contact EWM at: *
* *
* Eugene W. Myers Jr. *
* Bautzner Str. 122e *
* 01099 Dresden *
* GERMANY *
* Email: [email protected] *
* *
\************************************************************************************/
/*******************************************************************************************
*
* Utility for displaying the overlaps in a .las file in a variety of ways including
* a minimal listing of intervals, a cartoon, and a full out alignment.
*
* Author: Gene Myers
* Creation: July 2013
* Last Mod: Jan 2015
*
*******************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "DB.h"
#include "align.h"
static char *Usage[] =
{ "[-carmEUF] [-i<int(4)>] [-w<int(100)>] [-b<int(10)>] ",
" [<src1:db|dam> [ <src2:db|dam> ] <align:las> [ <reads:range> ... ]"
};
#define LAST_READ_SYMBOL '$'
static int ORDER(const void *l, const void *r)
{ int x = *((int32 *) l);
int y = *((int32 *) r);
return (x-y);
}
int main(int argc, char *argv[])
{ DAZZ_DB _db1, *db1 = &_db1;
DAZZ_DB _db2, *db2 = &_db2;
Overlap _ovl, *ovl = &_ovl;
Alignment _aln, *aln = &_aln;
FILE *input;
int64 novl;
int tspace, tbytes, small;
int reps, *pts;
int ALIGN, CARTOON, REFERENCE, FLIP;
int INDENT, WIDTH, BORDER, UPPERCASE;
int ISTWO;
int ICE_FL;
int M4OVL;
// Process options
{ int i, j, k;
int flags[128];
char *eptr;
ARG_INIT("LA4Ice")
INDENT = 4;
WIDTH = 100;
BORDER = 10;
M4OVL = 0;
ICE_FL = 0;
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
switch (argv[i][1])
{ default:
ARG_FLAGS("carmEUF")
break;
case 'i':
ARG_NON_NEGATIVE(INDENT,"Indent")
break;
case 'w':
ARG_POSITIVE(WIDTH,"Alignment width")
break;
case 'b':
ARG_NON_NEGATIVE(BORDER,"Alignment border")
break;
}
else
argv[j++] = argv[i];
argc = j;
UPPERCASE = flags['U'];
ALIGN = flags['a'];
REFERENCE = flags['r'];
CARTOON = flags['c'];
FLIP = flags['F'];
M4OVL = flags['m'];
ICE_FL = flags['E'];
if (argc <= 2)
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage[0]);
fprintf(stderr," %*s %s\n",(int) strlen(Prog_Name),"",Usage[1]);
exit (1);
}
}
// Open trimmed DB or DB pair
{ int status;
char *pwd, *root;
FILE *input;
ISTWO = 0;
status = Open_DB(argv[1],db1);
if (status < 0)
exit (1);
if (db1->part > 0)
{ fprintf(stderr,"%s: Cannot be called on a block: %s\n",Prog_Name,argv[1]);
exit (1);
}
if (argc > 3)
{ pwd = PathTo(argv[3]);
root = Root(argv[3],".las");
if ((input = fopen(Catenate(pwd,"/",root,".las"),"r")) != NULL)
{ ISTWO = 1;
fclose(input);
status = Open_DB(argv[2],db2);
if (status < 0)
exit (1);
if (db2->part > 0)
{ fprintf(stderr,"%s: Cannot be called on a block: %s\n",Prog_Name,argv[2]);
exit (1);
}
Trim_DB(db2);
}
else
db2 = db1;
free(root);
free(pwd);
}
else
db2 = db1;
Trim_DB(db1);
}
// Process read index arguments into a sorted list of read ranges
pts = (int *) Malloc(sizeof(int)*2*argc,"Allocating read parameters");
if (pts == NULL)
exit (1);
reps = 0;
if (argc > 3+ISTWO)
{ int c, b, e;
char *eptr, *fptr;
for (c = 3+ISTWO; c < argc; c++)
{ if (argv[c][0] == LAST_READ_SYMBOL)
{ b = db1->nreads;
eptr = argv[c]+1;
}
else
b = strtol(argv[c],&eptr,10);
if (eptr > argv[c])
{ if (b == 0)
{ fprintf(stderr,"%s: 0 is not a valid index\n",Prog_Name);
exit (1);
}
if (*eptr == '\0')
{ pts[reps++] = b;
pts[reps++] = b;
continue;
}
else if (*eptr == '-')
{ if (eptr[1] == LAST_READ_SYMBOL)
{ e = INT32_MAX;
fptr = eptr+2;
}
else
e = strtol(eptr+1,&fptr,10);
if (fptr > eptr+1 && *fptr == 0 && eptr[1] != '-')
{ pts[reps++] = b;
pts[reps++] = e;
if (b > e)
{ fprintf(stderr,"%s: Empty range '%s'\n",Prog_Name,argv[c]);
exit (1);
}
continue;
}
}
}
fprintf(stderr,"%s: argument '%s' is not an integer range\n",Prog_Name,argv[c]);
exit (1);
}
qsort(pts,reps/2,sizeof(int64),ORDER);
b = 0;
for (c = 0; c < reps; c += 2)
if (b > 0 && pts[b-1] >= pts[c]-1)
{ if (pts[c+1] > pts[b-1])
pts[b-1] = pts[c+1];
}
else
{ pts[b++] = pts[c];
pts[b++] = pts[c+1];
}
pts[b++] = INT32_MAX;
reps = b;
}
else
{ pts[reps++] = 1;
pts[reps++] = INT32_MAX;
}
// Initiate file reading and read (novl, tspace) header
{ char *over, *pwd, *root;
pwd = PathTo(argv[2+ISTWO]);
root = Root(argv[2+ISTWO],".las");
over = Catenate(pwd,"/",root,".las");
input = Fopen(over,"r");
if (input == NULL)
exit (1);
if (fread(&novl,sizeof(int64),1,input) != 1)
SYSTEM_READ_ERROR
if (fread(&tspace,sizeof(int),1,input) != 1)
SYSTEM_READ_ERROR
if (tspace <= TRACE_XOVR)
{ small = 1;
tbytes = sizeof(uint8);
}
else
{ small = 0;
tbytes = sizeof(uint16);
}
if (!(M4OVL)) {
printf("\n%s: ",root);
Print_Number(novl,0,stdout);
printf(" records\n");
}
free(pwd);
free(root);
}
// Read the file and display selected records
if (tspace > 0)
{ int j;
uint16 *trace;
Work_Data *work;
int tmax;
int in, npt, idx, ar;
int64 tps;
char *abuffer, *bbuffer;
int ar_wide, br_wide;
int ai_wide, bi_wide;
int mn_wide, mx_wide;
int tp_wide;
aln->path = &(ovl->path);
if (ALIGN || REFERENCE)
{ work = New_Work_Data();
abuffer = New_Read_Buffer(db1);
bbuffer = New_Read_Buffer(db2);
}
else
{ abuffer = NULL;
bbuffer = NULL;
work = NULL;
}
tmax = 1000;
trace = (uint16 *) Malloc(sizeof(uint16)*tmax,"Allocating trace vector");
if (trace == NULL)
exit (1);
in = 0;
npt = pts[0];
idx = 1;
ar_wide = Number_Digits((int64) db1->nreads);
br_wide = Number_Digits((int64) db2->nreads);
ai_wide = Number_Digits((int64) db1->maxlen);
bi_wide = Number_Digits((int64) db2->maxlen);
if (db1->maxlen < db2->maxlen)
{ mn_wide = ai_wide;
mx_wide = bi_wide;
tp_wide = Number_Digits((int64) db1->maxlen/tspace+2);
}
else
{ mn_wide = bi_wide;
mx_wide = ai_wide;
tp_wide = Number_Digits((int64) db2->maxlen/tspace+2);
}
ar_wide += (ar_wide-1)/3;
br_wide += (br_wide-1)/3;
ai_wide += (ai_wide-1)/3;
bi_wide += (bi_wide-1)/3;
mn_wide += (mn_wide-1)/3;
tp_wide += (tp_wide-1)/3;
if (FLIP)
{ int x;
x = ar_wide; ar_wide = br_wide; br_wide = x;
x = ai_wide; ai_wide = bi_wide; bi_wide = x;
}
// For each record do
for (j = 0; j < novl; j++)
// Read it in
{ Read_Overlap(input,ovl);
if (ovl->path.tlen > tmax)
{ tmax = ((int) 1.2*ovl->path.tlen) + 100;
trace = (uint16 *) Realloc(trace,sizeof(uint16)*tmax,"Allocating trace vector");
if (trace == NULL)
exit (1);
}
ovl->path.trace = (void *) trace;
Read_Trace(input,ovl,tbytes);
// Determine if it should be displayed
ar = ovl->aread+1;
if (in)
{ while (ar > npt)
{ npt = pts[idx++];
if (ar < npt)
{ in = 0;
break;
}
npt = pts[idx++];
}
}
else
{ while (ar >= npt)
{ npt = pts[idx++];
if (ar <= npt)
{ in = 1;
break;
}
npt = pts[idx++];
}
}
if (!in)
continue;
// move calculation of sStart and sEnd (bbpos, bepos) up here since both ICE and M4OVL uses it
int64 bbpos, bepos;
if (COMP(ovl->flags)) {
bbpos = (int64) db2->reads[ovl->bread].rlen - (int64) ovl->path.bepos;
bepos = (int64) db2->reads[ovl->bread].rlen - (int64) ovl->path.bbpos;
} else {
bbpos = (int64) ovl->path.bbpos;
bepos = (int64) ovl->path.bepos;
}
if (ICE_FL)
{
// only contiue if it is a full-length-to-full-length mapping, as in:
// (1) qStart < 200 and sStart < 200
// (2) qEnd + 50 > qLen and sEnd + 50 > qLen
if (ovl->path.abpos > 200 || bbpos > 200)
continue;
if (ovl->path.aepos + 50 < db1->reads[ovl->aread].rlen)
continue;
if (bepos + 50 < db2->reads[ovl->bread].rlen)
continue;
}
// Display it
aln->alen = db1->reads[ovl->aread].rlen;
aln->blen = db2->reads[ovl->bread].rlen;
aln->flags = ovl->flags;
tps = ((ovl->path.aepos-1)/tspace - ovl->path.abpos/tspace);
if (M4OVL) {
double acc;
acc = 100-(200. * ovl->path.diffs)/( ovl->path.aepos - ovl->path.abpos + ovl->path.bepos - ovl->path.bbpos);
printf("%09lld %09lld %lld %5.2f ", (int64) ovl->aread, (int64) ovl->bread, (int64) bbpos - (int64) bepos, acc);
printf("0 %lld %lld %lld ", (int64) ovl->path.abpos, (int64) ovl->path.aepos, (int64) aln->alen);
printf("%d %lld %lld %lld ", COMP(ovl->flags), bbpos, bepos, (int64) aln->blen);
if ( ((int64) aln->blen < (int64) aln->alen) && ((int64) ovl->path.bbpos < 1) && ((int64) aln->blen - (int64) ovl->path.bepos < 1) )
{
printf("contains\n");
}
else if ( ((int64) aln->alen < (int64) aln->blen) && ((int64) ovl->path.abpos < 1) && ((int64) aln->alen - (int64) ovl->path.aepos < 1) )
{
printf("contained\n");
}
else
{
printf("overlap\n");
}
}
if (!M4OVL) {
if (FLIP)
{ Flip_Alignment(aln,0);
Print_Number((int64) ovl->bread+1,ar_wide+1,stdout);
printf(" ");
Print_Number((int64) ovl->aread+1,br_wide+1,stdout);
}
else
{ Print_Number((int64) ovl->aread+1,ar_wide+1,stdout);
printf(" ");
Print_Number((int64) ovl->bread+1,br_wide+1,stdout);
}
if (COMP(ovl->flags))
printf(" c");
else
printf(" n");
printf(" [");
Print_Number((int64) ovl->path.abpos,ai_wide,stdout);
printf("..");
Print_Number((int64) ovl->path.aepos,ai_wide,stdout);
printf("] x [");
Print_Number((int64) ovl->path.bbpos,bi_wide,stdout);
printf("..");
Print_Number((int64) ovl->path.bepos,bi_wide,stdout);
printf("]");
}
if (ALIGN || CARTOON || REFERENCE)
{ if (ALIGN || REFERENCE)
{ char *aseq, *bseq;
int amin, amax;
int bmin, bmax;
if (FLIP)
Flip_Alignment(aln,0);
if (small)
Decompress_TraceTo16(ovl);
amin = ovl->path.abpos - BORDER;
if (amin < 0) amin = 0;
amax = ovl->path.aepos + BORDER;
if (amax > aln->alen) amax = aln->alen;
if (COMP(aln->flags))
{ bmin = (aln->blen-ovl->path.bepos) - BORDER;
if (bmin < 0) bmin = 0;
bmax = (aln->blen-ovl->path.bbpos) + BORDER;
if (bmax > aln->blen) bmax = aln->blen;
}
else
{ bmin = ovl->path.bbpos - BORDER;
if (bmin < 0) bmin = 0;
bmax = ovl->path.bepos + BORDER;
if (bmax > aln->blen) bmax = aln->blen;
}
aseq = Load_Subread(db1,ovl->aread,amin,amax,abuffer,0);
bseq = Load_Subread(db2,ovl->bread,bmin,bmax,bbuffer,0);
aln->aseq = aseq - amin;
if (COMP(aln->flags))
{ Complement_Seq(bseq,bmax-bmin);
aln->bseq = bseq - (aln->blen - bmax);
}
else
aln->bseq = bseq - bmin;
Compute_Trace_PTS(aln,work,tspace,GREEDIEST);
if (FLIP)
{ if (COMP(aln->flags))
{ Complement_Seq(aseq,amax-amin);
Complement_Seq(bseq,bmax-bmin);
aln->aseq = aseq - (aln->alen - amax);
aln->bseq = bseq - bmin;
}
Flip_Alignment(aln,1);
}
}
if (CARTOON)
{ printf(" (");
Print_Number(tps,tp_wide,stdout);
printf(" trace pts)\n\n");
Alignment_Cartoon(stdout,aln,INDENT,mx_wide);
}
else
{ if (!M4OVL) {
printf(" : = ");
Print_Number((int64) ovl->path.diffs,mn_wide,stdout);
printf(" diffs (");
Print_Number(tps,tp_wide,stdout);
printf(" trace pts)\n");
}
}
if (REFERENCE)
Print_Reference(stdout,aln,work,INDENT,WIDTH,BORDER,UPPERCASE,mx_wide);
if (ALIGN)
Print_Alignment(stdout,aln,work,INDENT,WIDTH,BORDER,UPPERCASE,mx_wide);
}
else
{ printf(" : < ");
Print_Number((int64) ovl->path.diffs,mn_wide,stdout);
printf(" diffs (");
Print_Number(tps,tp_wide,stdout);
printf(" trace pts)\n");
}
}
free(trace);
if (ALIGN)
{ free(bbuffer-1);
free(abuffer-1);
Free_Work_Data(work);
}
}
if (M4OVL) {
printf("+ +\n");
printf("- -\n");
}
Close_DB(db1);
if (ISTWO)
Close_DB(db2);
exit (0);
}