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 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
|
/********************************************************************************************
*
* 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 <dirent.h>
#include <sys/resource.h>
#include <sys/param.h>
#if defined(BSD)
#include <sys/sysctl.h>
#endif
#include "DB.h"
#include "lsd.sort.h"
#include "filter.h"
static char *Usage[] =
{ "[-vaABI] [-k<int(16)>] [-%<int(28)>] [-h<int(50)>] [-w<int(6)>] [-t<int>]",
" [-M<int>] [-e<double(.75)] [-l<int(1500)>] [-s<int(100)>] [-H<int>]",
" [-T<int(4)>] [-P<dir(/tmp)>] [-m<track>]+",
" <subject:db|dam> <target:db|dam> ...",
};
int VERBOSE; // Globally visible to filter.c
int MINOVER;
int HGAP_MIN;
int SYMMETRIC;
int IDENTITY;
int BRIDGE;
char *SORT_PATH;
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(DAZZ_DB *block, int mtop)
{ Event ev[mtop+1];
Event *heap[mtop+2];
int r, mhalf;
int64 nsize;
{ DAZZ_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;
DAZZ_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 DAZZ_TRACK *merge_tracks(DAZZ_DB *block, int mtop, int64 nsize)
{ DAZZ_TRACK *ntrack;
Event ev[mtop+1];
Event *heap[mtop+2];
int r, mhalf;
int64 *anno;
int *alen;
int *data;
ntrack = (DAZZ_TRACK *) Malloc(sizeof(DAZZ_TRACK),"Allocating merged track");
if (ntrack == NULL)
Clean_Exit(1);
ntrack->name = Strdup("merge","Allocating merged track");
ntrack->anno = anno = (int64 *) Malloc(sizeof(int64)*(block->nreads+1),"Allocating merged track");
ntrack->alen = alen = (int *) Malloc(sizeof(int)*block->nreads,"Allocating merged track");
ntrack->data = data = (int *) Malloc(sizeof(int)*nsize,"Allocating merged track");
ntrack->size = sizeof(int);
ntrack->next = NULL;
ntrack->loaded = 1;
if (anno == NULL || alen == NULL || data == NULL || ntrack->name == NULL)
Clean_Exit(1);
{ DAZZ_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;
DAZZ_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);
}
alen[r] = (int) (nsize - anno[r]);
}
anno[r] = nsize;
return (ntrack);
}
static int read_DB(DAZZ_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)
Clean_Exit(1);
for (i = 0; i < mtop; i++)
{ status = Check_Track(block,mask[i],&kind);
if (status >= 0)
{ if (kind != MASK_TRACK)
{ fprintf(stderr,"%s: %s track is not a mask track.\n",Prog_Name,mask[i]);
exit (1);
}
if (status == 0)
Open_Track(block,mask[i]);
mstat[i] = 1;
}
else if (status == -1)
{ printf("%s: Warning: %s track not sync'd with db %s, ignored.\n",
Prog_Name,mask[i],name);
}
}
Trim_DB(block);
stop = 0;
for (i = 0; i < mtop; i++)
{ DAZZ_TRACK *track;
int64 *anno;
int j;
status = Check_Track(block,mask[i],&kind);
if (status < 0)
continue;
stop += 1;
track = Open_Track(block,mask[i]);
Load_All_Track_Data(track);
anno = (int64 *) (track->anno);
for (j = 0; j <= block->nreads; j++)
anno[j] /= sizeof(int);
}
if (stop > 1)
{ int64 nsize;
DAZZ_TRACK *track;
nsize = merge_size(block,stop);
track = merge_tracks(block,stop,nsize);
while (block->tracks != NULL)
Close_Track(block,block->tracks);
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 -x%d\n",
Prog_Name,name,kmer,kmer);
Clean_Exit(1);
}
}
Load_All_Reads(block,0);
return (isdam);
}
static char *CommandBuffer(char *aname, char *bname, char *spath)
{ static char *cat = NULL;
static int max = -1;
int len;
len = 2*(strlen(aname) + strlen(bname) + strlen(spath)) + 200;
if (len > max)
{ max = ((int) (1.2*len)) + 100;
if ((cat = (char *) realloc(cat,max+1)) == NULL)
{ fprintf(stderr,"%s: Out of memory (Making path name)\n",Prog_Name);
Clean_Exit(1);
}
}
return (cat);
}
void Clean_Exit(int val)
{ char *command;
command = CommandBuffer("","",SORT_PATH);
sprintf(command,"rm -r %s",SORT_PATH);
if (system(command) != 0)
{ fprintf(stderr,"%s: Command Failed:\n%*s %s\n",
Prog_Name,(int) strlen(Prog_Name),"",command);
exit (1);
}
exit (val);
}
int main(int argc, char *argv[])
{ DAZZ_DB _ablock, _bblock;
DAZZ_DB *ablock = &_ablock, *bblock = &_bblock;
char *afile, *bfile;
char *apath, *bpath;
char *aroot, *broot;
void *aindex, *bindex;
int alen, blen;
Align_Spec *asettings;
int isdam;
int MMAX, MTOP, *MSTAT;
char **MASK;
int KMER_LEN;
int MOD_THR;
int BIN_SHIFT;
int MAX_REPS;
int HIT_MIN;
double AVE_ERROR;
int SPACING;
int NTHREADS;
int MAP_ORDER;
#ifdef PROFILE
struct rusage stime, etime;
getrusage(RUSAGE_SELF, &stime);
#endif
{ int i, j, k;
int flags[128];
char *eptr;
DIR *dirp;
ARG_INIT("daligner2.0")
KMER_LEN = 16;
MOD_THR = 28;
HIT_MIN = 50;
BIN_SHIFT = 6;
MAX_REPS = 0;
HGAP_MIN = 0;
AVE_ERROR = .75;
SPACING = 100;
MINOVER = 1500; // Globally visible to filter.c
NTHREADS = 4;
SORT_PATH = "/tmp";
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("vaABI")
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 suppression 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);
}
MSTAT[MTOP] = 0;
MASK[MTOP++] = argv[i]+2;
break;
case 'P':
SORT_PATH = argv[i]+2;
if ((dirp = opendir(SORT_PATH)) == NULL)
{ fprintf(stderr,"%s: -P option: cannot open directory %s\n",Prog_Name,SORT_PATH);
exit (1);
}
closedir(dirp);
break;
case 'T':
ARG_POSITIVE(NTHREADS,"Number of threads")
break;
case '%':
ARG_POSITIVE(MOD_THR,"Modimer percentage")
break;
}
else
argv[j++] = argv[i];
argc = j;
VERBOSE = flags['v']; // Globally declared in filter.h
SYMMETRIC = 1-flags['A'];
IDENTITY = flags['I'];
BRIDGE = flags['B'];
MAP_ORDER = flags['a'];
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]);
fprintf(stderr," %*s %s\n",(int) strlen(Prog_Name),"",Usage[3]);
fprintf(stderr,"\n");
fprintf(stderr," -k: k-mer size (must be <= 32).\n");
fprintf(stderr," -%%: modimer percentage (take %% of the k-mers).\n");
fprintf(stderr," -w: Look for k-mers in averlapping bands of size 2^-w.\n");
fprintf(stderr," -h: A seed hit if the k-mers in band cover >= -h bps in the");
fprintf(stderr," targest read.\n");
fprintf(stderr," -t: Ignore k-mers that occur >= -t times in a block.\n");
fprintf(stderr," -M: Use only -M GB of memory by ignoring most frequent k-mers.\n");
fprintf(stderr,"\n");
fprintf(stderr," -e: Look for alignments with -e percent similarity.\n");
fprintf(stderr," -l: Look for alignments of length >= -l.\n");
fprintf(stderr," -s: The trace point spacing for encoding alignments.\n");
fprintf(stderr," -B: Bridge consecutive aligned segments into one if possible\n");
fprintf(stderr," -H: HGAP option: align only target reads of length >= -H.\n");
fprintf(stderr,"\n");
fprintf(stderr," -T: Use -T threads.\n");
fprintf(stderr," -P: Do block level sorts and merges in directory -P.\n");
fprintf(stderr," -m: Soft mask the blocks with the specified mask.\n");
fprintf(stderr,"\n");
fprintf(stderr," -v: Verbose mode, output statistics as proceed.\n");
fprintf(stderr," -a: sort .las by A-read,A-position pairs for map usecase\n");
fprintf(stderr," off => sort .las by A,B-read pairs for overlap piles\n");
fprintf(stderr," -A: Compare subjet to target, but not vice versa.\n");
fprintf(stderr," -I: Compare reads to themselves\n");
exit (1);
}
}
MINOVER *= 2;
Set_Filter_Params(KMER_LEN,MOD_THR,BIN_SHIFT,MAX_REPS,HIT_MIN,NTHREADS);
Set_LSD_Params(NTHREADS,VERBOSE);
// Create directory in SORT_PATH for file operations
{ char *newpath;
newpath = (char *) Malloc(strlen(SORT_PATH)+30,"Allocating sort path");
if (newpath == NULL)
exit (1);
sprintf(newpath,"%s/daligner.%d",SORT_PATH,getpid());
if (mkdir(newpath,S_IRWXU) != 0)
{ fprintf(stderr,"%s: Could not create directory %s\n",Prog_Name,newpath);
exit (1);
}
SORT_PATH = newpath;
}
// 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");
apath = PathTo(afile);
asettings = New_Align_Spec( AVE_ERROR, SPACING, ablock->freq, 1);
if (VERBOSE)
printf("\nBuilding index for %s\n",aroot);
aindex = Sort_Kmers(ablock,&alen);
// Compare against reads in B in both orientations
{ int i, j;
Block_Looper *parse;
char *command;
for (i = 2; i < argc; i++)
{ parse = Parse_Block_DB_Arg(argv[i]);
while (Advance_Block_Arg(parse))
{ broot = Block_Arg_Root(parse);
bpath = Block_Arg_Path(parse);
if (strcmp(broot,aroot) != 0 || strcmp(bpath,apath) != 0)
{ bfile = Strdup(Catenate(bpath,"/",broot,""),"Allocating path");
read_DB(bblock,bfile,MASK,MSTAT,MTOP,KMER_LEN);
free(bfile);
if (VERBOSE)
printf("\nBuilding index for %s\n",broot);
bindex = Sort_Kmers(bblock,&blen);
Match_Filter(aroot,ablock,broot,bblock,aindex,alen,bindex,blen,asettings);
Close_DB(bblock);
}
else
Match_Filter(aroot,ablock,aroot,ablock,aindex,alen,aindex,alen,asettings);
#define SYSTEM_CHECK(command) \
if (VERBOSE) \
printf("\n%s\n",command); \
if (system(command) != 0) \
{ fprintf(stderr,"\n%s: Command Failed:\n%*s %s\n", \
Prog_Name,(int) strlen(Prog_Name),"",command); \
Clean_Exit(1); \
}
command = CommandBuffer(aroot,broot,SORT_PATH);
sprintf(command,"LAsort %s %s %s/%s.%s.N%c",VERBOSE?"-v":"",
MAP_ORDER?"-a":"",SORT_PATH,aroot,broot,BLOCK_SYMBOL);
SYSTEM_CHECK(command)
sprintf(command,"LAmerge %s %s %s.%s.las %s/%s.%s.N%c.S",VERBOSE?"-v":"",
MAP_ORDER?"-a":"",aroot,broot,SORT_PATH,aroot,broot,BLOCK_SYMBOL);
SYSTEM_CHECK(command)
if (strcmp(broot,aroot) != 0 || strcmp(bpath,apath) != 0)
{ if (SYMMETRIC)
{ sprintf(command,"LAsort %s %s %s/%s.%s.N%c",VERBOSE?"-v":"",
MAP_ORDER?"-a":"",SORT_PATH,broot,aroot,BLOCK_SYMBOL);
SYSTEM_CHECK(command)
sprintf(command,"LAmerge %s %s %s.%s.las %s/%s.%s.N%c.S",VERBOSE?"-v":"",
MAP_ORDER?"-a":"",broot,aroot,SORT_PATH,broot,aroot,BLOCK_SYMBOL);
SYSTEM_CHECK(command)
}
}
free(bpath);
free(broot);
}
Free_Block_Arg(parse);
}
for (j = 0; j < MTOP; j++)
if (MSTAT[j] == 0)
printf("%s: Warning: Track %s given but never used.\n", Prog_Name,MASK[j]);
}
free(aindex);
Close_DB(ablock);
free(apath);
free(aroot);
#ifdef PROFILE
{ int64 secs, mics;
getrusage(RUSAGE_SELF, &etime);
secs = etime.ru_utime.tv_sec - stime.ru_utime.tv_sec;
mics = etime.ru_utime.tv_usec - stime.ru_utime.tv_usec;
mics += 1000000*secs;
secs = etime.ru_stime.tv_sec - stime.ru_stime.tv_sec;
mics += etime.ru_stime.tv_usec - stime.ru_stime.tv_usec;
mics += 1000000*secs;
printf("T %lld\n",mics/1000);
}
#endif
Clean_Exit(0);
exit (0);
}
|