forked from PacificBiosciences/DALIGNER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daligner.c
731 lines (617 loc) · 19.4 KB
/
daligner.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
721
722
723
724
725
726
727
728
729
730
731
/*********************************************************************************************\
*
* Find all local alignment between long, noisy DNA reads:
* Compare sequences in 'subject' database against those in the list of 'target' databases
* searching for local alignments of 1000bp or more (defined constant MIN_OVERLAP in
* filter.c). Subject is compared in both orientations againt each target. An output
* stream of 'Overlap' records (see align.h) is written in binary to the standard output,
* each encoding a given found local alignment between two of the sequences. The -v
* option turns on a verbose reporting mode that gives statistics on each major stage.
*
* The filter operates by looking for a pair of diagonal bands of width 2^'s' that contain
* a collection of exact matching 'k'-mers between the two sequences, such that the total
* number of bases covered by 'k'-mer hits is 'h'. k cannot be larger than 32 in the
* current implementation.
*
* Some k-mers are significantly over-represented (e.g. homopolymer runs). These are
* suppressed as seed hits, with the parameter 't' -- any k-mer that occurs more than
* 't' times in either the subject or target is not counted as a seed hit. If the -t
* option is absent then no k-mer is suppressed. Alternatively, the option -M specifies
* that 't' is dynamically set to the largest value such that less than -M memory is
* used.
*
* For each subject, target pair, say XXX and YYY, the program outputs a file containing
* overlaps of the form XXX.YYY.[C|N]#.las where C implies that the reads in XXX were
* complemented and N implies they were not (both comparisons are performed), and # is
* the thread that detected and wrote out the collection of overlaps. For example, if
* NTHREAD in the program is 4, then 8 files are output for each subject, target pair.
*
* Author: Gene Myers
* Date : June 1, 2014
*
*********************************************************************************************/
#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 <sys/param.h>
#if defined(BSD)
#include <sys/sysctl.h>
#endif
#include "DB.h"
#include "filter.h"
static char *Usage[] =
{ "[-vbAI] [-k<int(14)>] [-w<int(6)>] [-h<int(35)>] [-t<int>] [-M<int>]",
" [-e<double(.70)] [-l<int(1000)>] [-s<int(100)>] [-H<int>] [-T<int(4)>]",
" [-m<track>]+ <subject:db|dam> <target:db|dam> ...",
};
int VERBOSE; // Globally visible to filter.c
int BIASED;
int MINOVER;
int HGAP_MIN;
int SYMMETRIC;
int IDENTITY;
uint64 MEM_LIMIT;
uint64 MEM_PHYSICAL;
/* Adapted from code by David Robert Nadeau (http://NadeauSoftware.com) licensed under
* "Creative Commons Attribution 3.0 Unported License"
* (http://creativecommons.org/licenses/by/3.0/deed.en_US)
*
* I removed Windows options, reformated, and return int64 instead of size_t
*/
static int64 getMemorySize( )
{
#if defined(CTL_HW) && (defined(HW_MEMSIZE) || defined(HW_PHYSMEM64))
// OSX, NetBSD, OpenBSD
int mib[2];
size_t size = 0;
size_t len = sizeof( size );
mib[0] = CTL_HW;
#if defined(HW_MEMSIZE)
mib[1] = HW_MEMSIZE; // OSX
#elif defined(HW_PHYSMEM64)
mib[1] = HW_PHYSMEM64; // NetBSD, OpenBSD
#endif
if (sysctl(mib,2,&size,&len,NULL,0) == 0)
return ((size_t) size);
return (0);
#elif defined(_SC_AIX_REALMEM)
// AIX
return ((size_t) sysconf( _SC_AIX_REALMEM ) * ((size_t) 1024L));
#elif defined(_SC_PHYS_PAGES) && defined(_SC_PAGESIZE)
// FreeBSD, Linux, OpenBSD, & Solaris
size_t size = 0;
size = (size_t) sysconf(_SC_PHYS_PAGES);
return (size * ((size_t) sysconf(_SC_PAGESIZE)));
#elif defined(_SC_PHYS_PAGES) && defined(_SC_PAGE_SIZE)
// ? Legacy ?
size_t size = 0;
size = (size_t) sysconf(_SC_PHYS_PAGES);
return (size * ((size_t) sysconf(_SC_PAGE_SIZE)));
#elif defined(CTL_HW) && (defined(HW_PHYSMEM) || defined(HW_REALMEM))
// DragonFly BSD, FreeBSD, NetBSD, OpenBSD, and OSX
int mib[2];
unsigned int size = 0;
size_t len = sizeof( size );
mib[0] = CTL_HW;
#if defined(HW_REALMEM)
mib[1] = HW_REALMEM; // FreeBSD
#elif defined(HW_PYSMEM)
mib[1] = HW_PHYSMEM; // Others
#endif
if (sysctl(mib,2,&size,&len,NULL,0) == 0)
return (size_t)size;
return (0);
#else
return (0);
#endif
}
typedef struct
{ int *ano;
int *end;
int idx;
int out;
} Event;
static void reheap(int s, Event **heap, int hsize)
{ int c, l, r;
Event *hs, *hr, *hl;
c = s;
hs = heap[s];
while ((l = 2*c) <= hsize)
{ r = l+1;
hl = heap[l];
hr = heap[r];
if (hr->idx > hl->idx)
{ if (hs->idx > hl->idx)
{ heap[c] = hl;
c = l;
}
else
break;
}
else
{ if (hs->idx > hr->idx)
{ heap[c] = hr;
c = r;
}
else
break;
}
}
if (c != s)
heap[c] = hs;
}
static int64 merge_size(HITS_DB *block, int mtop)
{ Event ev[mtop+1];
Event *heap[mtop+2];
int r, mhalf;
int64 nsize;
{ HITS_TRACK *track;
int i;
track = block->tracks;
for (i = 0; i < mtop; i++)
{ ev[i].ano = ((int *) (track->data)) + ((int64 *) (track->anno))[0];
ev[i].out = 1;
heap[i+1] = ev+i;
track = track->next;
}
ev[mtop].idx = INT32_MAX;
heap[mtop+1] = ev+mtop;
}
mhalf = mtop/2;
nsize = 0;
for (r = 0; r < block->nreads; r++)
{ int i, level, hsize;
HITS_TRACK *track;
track = block->tracks;
for (i = 0; i < mtop; i++)
{ ev[i].end = ((int *) (track->data)) + ((int64 *) (track->anno))[r+1];
if (ev[i].ano < ev[i].end)
ev[i].idx = *(ev[i].ano);
else
ev[i].idx = INT32_MAX;
track = track->next;
}
hsize = mtop;
for (i = mhalf; i > 1; i--)
reheap(i,heap,hsize);
level = 0;
while (1)
{ Event *p;
reheap(1,heap,hsize);
p = heap[1];
if (p->idx == INT32_MAX) break;
p->out = 1-p->out;
if (p->out)
{ level -= 1;
if (level == 0)
nsize += 1;
}
else
{ if (level == 0)
nsize += 1;
level += 1;
}
p->ano += 1;
if (p->ano >= p->end)
p->idx = INT32_MAX;
else
p->idx = *(p->ano);
}
}
return (nsize);
}
static HITS_TRACK *merge_tracks(HITS_DB *block, int mtop, int64 nsize)
{ HITS_TRACK *ntrack;
Event ev[mtop+1];
Event *heap[mtop+2];
int r, mhalf;
int64 *anno;
int *data;
ntrack = (HITS_TRACK *) Malloc(sizeof(HITS_TRACK),"Allocating merged track");
if (ntrack == NULL)
exit (1);
ntrack->name = Strdup("merge","Allocating merged track");
ntrack->anno = anno = (int64 *) Malloc(sizeof(int64)*(block->nreads+1),"Allocating merged track");
ntrack->data = data = (int *) Malloc(sizeof(int)*nsize,"Allocating merged track");
ntrack->size = sizeof(int);
ntrack->next = NULL;
if (anno == NULL || data == NULL || ntrack->name == NULL)
exit (1);
{ HITS_TRACK *track;
int i;
track = block->tracks;
for (i = 0; i < mtop; i++)
{ ev[i].ano = ((int *) (track->data)) + ((int64 *) (track->anno))[0];
ev[i].out = 1;
heap[i+1] = ev+i;
track = track->next;
}
ev[mtop].idx = INT32_MAX;
heap[mtop+1] = ev+mtop;
}
mhalf = mtop/2;
nsize = 0;
for (r = 0; r < block->nreads; r++)
{ int i, level, hsize;
HITS_TRACK *track;
anno[r] = nsize;
track = block->tracks;
for (i = 0; i < mtop; i++)
{ ev[i].end = ((int *) (track->data)) + ((int64 *) (track->anno))[r+1];
if (ev[i].ano < ev[i].end)
ev[i].idx = *(ev[i].ano);
else
ev[i].idx = INT32_MAX;
track = track->next;
}
hsize = mtop;
for (i = mhalf; i > 1; i--)
reheap(i,heap,hsize);
level = 0;
while (1)
{ Event *p;
reheap(1,heap,hsize);
p = heap[1];
if (p->idx == INT32_MAX) break;
p->out = 1-p->out;
if (p->out)
{ level -= 1;
if (level == 0)
data[nsize++] = p->idx;
}
else
{ if (level == 0)
data[nsize++] = p->idx;
level += 1;
}
p->ano += 1;
if (p->ano >= p->end)
p->idx = INT32_MAX;
else
p->idx = *(p->ano);
}
}
anno[r] = nsize;
return (ntrack);
}
static int read_DB(HITS_DB *block, char *name, char **mask, int *mstat, int mtop, int kmer)
{ int i, isdam, status, kind, stop;
isdam = Open_DB(name,block);
if (isdam < 0)
exit (1);
for (i = 0; i < mtop; i++)
{ status = Check_Track(block,mask[i],&kind);
if (status >= 0)
if (kind == MASK_TRACK)
mstat[i] = 0;
else
{ if (mstat[i] != 0)
mstat[i] = -3;
}
else
{ if (mstat[i] == -2)
mstat[i] = status;
}
if (status == 0 && kind == MASK_TRACK)
Load_Track(block,mask[i]);
}
Trim_DB(block);
stop = 0;
for (i = 0; i < mtop; i++)
{ HITS_TRACK *track;
int64 *anno;
int j;
status = Check_Track(block,mask[i],&kind);
if (status < 0 || kind != MASK_TRACK)
continue;
stop += 1;
track = Load_Track(block,mask[i]);
anno = (int64 *) (track->anno);
for (j = 0; j <= block->nreads; j++)
anno[j] /= sizeof(int);
}
if (stop > 1)
{ int64 nsize;
HITS_TRACK *track;
nsize = merge_size(block,stop);
track = merge_tracks(block,stop,nsize);
while (block->tracks != NULL)
Close_Track(block,block->tracks->name);
block->tracks = track;
}
if (block->cutoff < kmer)
{ for (i = 0; i < block->nreads; i++)
if (block->reads[i].rlen < kmer)
{ fprintf(stderr,"%s: Block %s contains reads < %dbp long ! Run DBsplit.\n",
Prog_Name,name,kmer);
exit (1);
}
}
Read_All_Sequences(block,0);
return (isdam);
}
static void complement(char *s, int len)
{ char *t;
int c;
t = s + (len-1);
while (s < t)
{ c = *s;
*s = (char) (3-*t);
*t = (char) (3-c);
s += 1;
t -= 1;
}
if (s == t)
*s = (char) (3-*s);
}
static HITS_DB *complement_DB(HITS_DB *block, int inplace)
{ static HITS_DB _cblock, *cblock = &_cblock;
int nreads;
HITS_READ *reads;
char *seq;
nreads = block->nreads;
reads = block->reads;
if (inplace)
{ seq = (char *) block->bases;
cblock = block;
}
else
{ seq = (char *) Malloc(block->reads[nreads].boff+1,"Allocating dazzler sequence block");
if (seq == NULL)
exit (1);
*seq++ = 4;
memcpy(seq,block->bases,block->reads[nreads].boff);
*cblock = *block;
cblock->bases = (void *) seq;
cblock->tracks = NULL;
}
{ int i;
float x;
x = cblock->freq[0];
cblock->freq[0] = cblock->freq[3];
cblock->freq[3] = x;
x = cblock->freq[1];
cblock->freq[1] = cblock->freq[2];
cblock->freq[2] = x;
for (i = 0; i < nreads; i++)
complement(seq+reads[i].boff,reads[i].rlen);
}
{ HITS_TRACK *src, *trg;
int *data, *tata;
int i, x, rlen;
int64 *tano, *anno;
int64 j, k;
for (src = block->tracks; src != NULL; src = src->next)
{ tano = (int64 *) src->anno;
tata = (int *) src->data;
if (inplace)
{ data = tata;
anno = tano;
trg = src;
}
else
{ data = (int *) Malloc(sizeof(int)*tano[nreads],
"Allocating dazzler interval track data");
anno = (int64 *) Malloc(sizeof(int64)*(nreads+1),
"Allocating dazzler interval track index");
trg = (HITS_TRACK *) Malloc(sizeof(HITS_TRACK),
"Allocating dazzler interval track header");
if (data == NULL || trg == NULL || anno == NULL)
exit (1);
trg->name = Strdup(src->name,"Copying track name");
if (trg->name == NULL)
exit (1);
trg->size = 4;
trg->anno = (void *) anno;
trg->data = (void *) data;
trg->next = cblock->tracks;
cblock->tracks = trg;
}
for (i = 0; i < nreads; i++)
{ rlen = reads[i].rlen;
anno[i] = tano[i];
j = tano[i+1]-1;
k = tano[i];
while (k < j)
{ x = tata[j];
data[j--] = rlen - tata[k];
data[k++] = rlen - x;
}
if (k == j)
data[k] = rlen - tata[k];
}
anno[nreads] = tano[nreads];
}
}
return (cblock);
}
int main(int argc, char *argv[])
{ HITS_DB _ablock, _bblock;
HITS_DB *ablock = &_ablock, *bblock = &_bblock;
char *afile, *bfile;
char *aroot, *broot;
void *aindex, *bindex;
int alen, blen;
Align_Spec *asettings;
int isdam;
int MMAX, MTOP, *MSTAT;
char **MASK;
int KMER_LEN;
int BIN_SHIFT;
int MAX_REPS;
int HIT_MIN;
double AVE_ERROR;
int SPACING;
int NTHREADS;
{ int i, j, k;
int flags[128];
char *eptr;
ARG_INIT("daligner")
KMER_LEN = 14;
HIT_MIN = 35;
BIN_SHIFT = 6;
MAX_REPS = 0;
HGAP_MIN = 0;
AVE_ERROR = .70;
SPACING = 100;
MINOVER = 1000; // Globally visible to filter.c
NTHREADS = 4;
MEM_PHYSICAL = getMemorySize();
MEM_LIMIT = MEM_PHYSICAL;
if (MEM_PHYSICAL == 0)
{ fprintf(stderr,"\nWarning: Could not get physical memory size\n");
fflush(stderr);
}
MTOP = 0;
MMAX = 10;
MASK = (char **) Malloc(MMAX*sizeof(char *),"Allocating mask track array");
MSTAT = (int *) Malloc(MMAX*sizeof(int),"Allocating mask status array");
if (MASK == NULL || MSTAT == NULL)
exit (1);
j = 1;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-')
switch (argv[i][1])
{ default:
ARG_FLAGS("vbAI")
break;
case 'k':
ARG_POSITIVE(KMER_LEN,"K-mer length")
if (KMER_LEN > 32)
{ fprintf(stderr,"%s: K-mer length must be 32 or less\n",Prog_Name);
exit (1);
}
break;
case 'w':
ARG_POSITIVE(BIN_SHIFT,"Log of bin width")
break;
case 'h':
ARG_POSITIVE(HIT_MIN,"Hit threshold (in bp.s)")
break;
case 't':
ARG_POSITIVE(MAX_REPS,"Tuple supression frequency")
break;
case 'H':
ARG_POSITIVE(HGAP_MIN,"HGAP threshold (in bp.s)")
break;
case 'e':
ARG_REAL(AVE_ERROR)
if (AVE_ERROR < .7 || AVE_ERROR >= 1.)
{ fprintf(stderr,"%s: Average correlation must be in [.7,1.) (%g)\n",
Prog_Name,AVE_ERROR);
exit (1);
}
break;
case 'l':
ARG_POSITIVE(MINOVER,"Minimum alignment length")
break;
case 's':
ARG_POSITIVE(SPACING,"Trace spacing")
break;
case 'M':
{ int limit;
ARG_NON_NEGATIVE(limit,"Memory allocation (in Gb)")
MEM_LIMIT = limit * 0x40000000ll;
break;
}
case 'm':
if (MTOP >= MMAX)
{ MMAX = 1.2*MTOP + 10;
MASK = (char **) Realloc(MASK,MMAX*sizeof(char *),"Reallocating mask track array");
MSTAT = (int *) Realloc(MSTAT,MMAX*sizeof(int),"Reallocating mask status array");
if (MASK == NULL || MSTAT == NULL)
exit (1);
}
MASK[MTOP++] = argv[i]+2;
break;
case 'T':
ARG_POSITIVE(NTHREADS,"Number of threads")
break;
}
else
argv[j++] = argv[i];
argc = j;
VERBOSE = flags['v']; // Globally declared in filter.h
BIASED = flags['b']; // Globally declared in filter.h
SYMMETRIC = 1-flags['A'];
IDENTITY = flags['I'];
if (argc <= 2)
{ fprintf(stderr,"Usage: %s %s\n",Prog_Name,Usage[0]);
fprintf(stderr," %*s %s\n",(int) strlen(Prog_Name),"",Usage[1]);
fprintf(stderr," %*s %s\n",(int) strlen(Prog_Name),"",Usage[2]);
exit (1);
}
for (j = 0; j < MTOP; j++)
MSTAT[j] = -2;
}
MINOVER *= 2;
if (Set_Filter_Params(KMER_LEN,BIN_SHIFT,MAX_REPS,HIT_MIN,NTHREADS))
{ fprintf(stderr,"Illegal combination of filter parameters\n");
exit (1);
}
/* Read in the reads in A */
afile = argv[1];
isdam = read_DB(ablock,afile,MASK,MSTAT,MTOP,KMER_LEN);
if (isdam)
aroot = Root(afile,".dam");
else
aroot = Root(afile,".db");
asettings = New_Align_Spec( AVE_ERROR, SPACING, ablock->freq);
/* Compare against reads in B in both orientations */
{ int i, j;
aindex = NULL;
broot = NULL;
for (i = 2; i < argc; i++)
{ bfile = argv[i];
if (strcmp(afile,bfile) != 0)
{ isdam = read_DB(bblock,bfile,MASK,MSTAT,MTOP,KMER_LEN);
if (isdam)
broot = Root(bfile,".dam");
else
broot = Root(bfile,".db");
}
if (i == 2)
{ for (j = 0; j < MTOP; j++)
{ if (MSTAT[j] == -2)
printf("%s: Warning: -m%s option given but no track found.\n",Prog_Name,MASK[i]);
else if (MSTAT[j] == -1)
printf("%s: Warning: %s track not sync'd with relevant db.\n",Prog_Name,MASK[i]);
else if (MSTAT[j] == -3)
printf("%s: Warning: %s track is not a mask track.\n",Prog_Name,MASK[i]);
}
if (VERBOSE)
printf("\nBuilding index for %s\n",aroot);
aindex = Sort_Kmers(ablock,&alen);
}
if (strcmp(afile,bfile) != 0)
{ if (VERBOSE)
printf("\nBuilding index for %s\n",broot);
bindex = Sort_Kmers(bblock,&blen);
Match_Filter(aroot,ablock,broot,bblock,aindex,alen,bindex,blen,0,asettings);
bblock = complement_DB(bblock,1);
if (VERBOSE)
printf("\nBuilding index for c(%s)\n",broot);
bindex = Sort_Kmers(bblock,&blen);
Match_Filter(aroot,ablock,broot,bblock,aindex,alen,bindex,blen,1,asettings);
free(broot);
}
else
{ Match_Filter(aroot,ablock,aroot,ablock,aindex,alen,aindex,alen,0,asettings);
bblock = complement_DB(ablock,0);
if (VERBOSE)
printf("\nBuilding index for c(%s)\n",aroot);
bindex = Sort_Kmers(bblock,&blen);
Match_Filter(aroot,ablock,aroot,bblock,aindex,alen,bindex,blen,1,asettings);
bblock->reads = NULL; // ablock & bblock share "reads" vector, don't let Close_DB
// free it !
}
Close_DB(bblock);
}
}
exit (0);
}