-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpop_diverge.cpp
607 lines (547 loc) · 19.3 KB
/
pop_diverge.cpp
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
/** \file pop_diverge.cpp
* \brief Functions for calculating divergence from reference genome
* \author Daniel Garrigan
* \version 0.3
*/
#include "pop_diverge.h"
#include "tables.h"
int main_diverge(int argc, char *argv[])
{
bool found = false; //! is the outgroup sequence found?
int chr; //! chromosome identifier
int beg; //! beginning coordinate for analysis
int end; //! end coordinate for analysis
int ref; //! ref
long num_windows; //! number of windows
std::string msg; //! string for error message
bam_plbuf_t *buf; //! pileup buffer
divergeData t;
// parse the command line options
std::string region = t.parseCommandLine(argc, argv);
// check input BAM file for errors
t.checkBAM();
// initialize the sample data structure
t.bam_smpl_init();
// add samples
t.bam_smpl_add();
// initialize error model
t.em = errmod_init(1.0-0.83);
// if outgroup option is used check to make sure it exists
if (t.flag & BAM_OUTGROUP)
{
for (int i=0; i < t.sm->n; i++)
if (strcmp(t.sm->smpl[i], t.outgroup.c_str()) == 0)
{
t.outidx = i;
found = true;
}
if (!found)
{
msg = "Specified outgroup " + t.outgroup + " not found";
fatal_error(msg, __FILE__, __LINE__, 0);
}
}
// parse genomic region
int k = bam_parse_region(t.h, region, &chr, &beg, &end);
if (k < 0)
{
msg = "Bad genome coordinates: " + region;
fatal_error(msg, __FILE__, __LINE__, 0);
}
// fetch reference sequence
t.ref_base = faidx_fetch_seq(t.fai_file, t.h->target_name[chr], 0, 0x7fffffff, &(t.len));
// calculate the number of windows
if (t.flag & BAM_WINDOW)
num_windows = ((end-beg)-1)/t.win_size;
else
{
t.win_size = (end-beg);
num_windows = 1;
}
// iterate through all windows along specified genomic region
for (long cw=0; cw < num_windows; cw++)
{
// construct genome coordinate string
std::string scaffold_name(t.h->target_name[chr]);
std::ostringstream winc(scaffold_name);
winc.seekp(0, std::ios::end);
winc << ":" << beg+(cw*t.win_size)+1 << "-" << ((cw+1)*t.win_size)+(beg-1);
std::string winCoord = winc.str();
// initialize number of sites to zero
t.num_sites = 0;
// parse the BAM file and check if region is retrieved from the reference
if (t.flag & BAM_WINDOW)
{
k = bam_parse_region(t.h, winCoord, &ref, &(t.beg), &(t.end));
if (k < 0)
{
msg = "Bad window coordinates " + winCoord;
fatal_error(msg, __FILE__, __LINE__, 0);
}
}
else
{
ref = chr;
t.beg = beg;
t.end = end;
if (ref < 0)
{
msg = "Bad scaffold name: " + region;
fatal_error(msg, __FILE__, __LINE__, 0);
}
}
// initialize diverge specific variables
t.init_diverge();
// create population assignments
t.assign_pops();
// set default minimum sample size as
// the number of samples in the population
t.set_min_pop_n();
// initialize pileup
buf = bam_plbuf_init(make_diverge, &t);
// fetch region from bam file
if ((bam_fetch(t.bam_in->x.bam, t.idx, ref, t.beg, t.end, buf, fetch_func)) < 0)
{
msg = "Failed to retrieve region " + region + " due to corrupted BAM index file";
fatal_error(msg, __FILE__, __LINE__, 0);
}
// finalize pileup
bam_plbuf_push(0, buf);
// print results to stdout
t.calc_diverge();
t.print_diverge(chr);
// take out the garbage
t.destroy_diverge();
bam_plbuf_destroy(buf);
}
// end of window interation
errmod_destroy(t.em);
samclose(t.bam_in);
bam_index_destroy(t.idx);
t.bam_smpl_destroy();
free(t.ref_base);
return 0;
}
int make_diverge(unsigned int tid, unsigned int pos, int n, const bam_pileup1_t *pl, void *data)
{
int i;
int fq;
unsigned long long sample_cov;
unsigned long long *cb = NULL;
divergeData *t = NULL;
// get control data structure
t = (divergeData*)data;
// only consider sites located in designated region
if ((t->beg <= (int)pos) && (t->end > (int)pos))
{
// allocate memory pileup data
try
{
cb = new unsigned long long [t->sm->n]();
}
catch (std::bad_alloc& ba)
{
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
}
// call bases
t->call_base(n, pl, cb);
// resolve heterozygous sites
if (!(t->flag & BAM_HETEROZYGOTE))
clean_heterozygotes(t->sm->n, cb, (int)t->ref_base[pos], t->min_snpQ);
// determine if site is segregating
fq = segbase(t->sm->n, cb, t->ref_base[pos], t->min_snpQ);
// determine how many samples pass the quality filters
sample_cov = qfilter(t->sm->n, cb, t->min_rmsQ, t->min_depth, t->max_depth);
for (i=0; i < t->sm->npops; i++)
t->pop_sample_mask[i] = sample_cov & t->pop_mask[i];
if (popcount64(sample_cov) == t->sm->n)
{
// calculate the site type
t->types[t->num_sites] = t->cal_site_type(cb);
if (fq > 0)
{
t->hap.pos[t->segsites] = pos;
t->hap.ref[t->segsites] = bam_nt16_table[(int)t->ref_base[pos]];
for (i=0; i < t->sm->n; i++)
{
t->hap.rms[i][t->segsites] = (cb[i]>>(CHAR_BIT*6))&0xffff;
t->hap.snpq[i][t->segsites] = (cb[i]>>(CHAR_BIT*4))&0xffff;
t->hap.num_reads[i][t->segsites] = (cb[i]>>(CHAR_BIT*2))&0xffff;
t->hap.base[i][t->segsites] = bam_nt16_table[(int)iupac[(cb[i]>>CHAR_BIT)&0xff]];
if (cb[i]&0x2ULL)
t->hap.seq[i][t->segsites/64] |= 0x1ULL << t->segsites%64;
}
t->hap.idx[t->segsites] = t->num_sites;
t->segsites++;
}
t->num_sites++;
}
// take out the garbage
delete [] cb;
}
return 0;
}
void divergeData::calc_diverge(void)
{
int i, j;
// calculate number of differences with reference sequence
switch (output)
{
case 0:
for (i=0; i < sm->n; i++)
for (j=0; j <= SEG_IDX(segsites); j++)
ind_div[i] += popcount64(hap.seq[i][j]);
break;
case 1:
unsigned long long pop_type;
unsigned short freq;
for (i=0; i < sm->npops; i++)
{
num_snps[i] = 0;
for (j=0; j < segsites; j++)
{
pop_type = types[hap.idx[j]] & pop_mask[i];
// check if outgroup is different from reference
if ((flag & BAM_OUTGROUP) && CHECK_BIT(types[hap.idx[j]], outidx))
freq = pop_nsmpl[i]-popcount64(pop_type);
else
freq = popcount64(pop_type);
if ((freq > 0) && (freq < pop_nsmpl[i]))
++num_snps[i];
else if (freq == pop_nsmpl[i])
++pop_div[i];
}
}
break;
default:
break;
}
}
std::string divergeData::parseCommandLine(int argc, char *argv[])
{
#ifdef _MSC_VER
struct _stat finfo;
#else
struct stat finfo;
#endif
std::vector<std::string> glob_opts;
std::string msg;
GetOpt::GetOpt_pp args(argc, argv);
args >> GetOpt::Option('f', reffile);
args >> GetOpt::Option('h', headfile);
args >> GetOpt::Option('m', min_depth);
args >> GetOpt::Option('x', max_depth);
args >> GetOpt::Option('q', min_rmsQ);
args >> GetOpt::Option('s', min_snpQ);
args >> GetOpt::Option('a', min_mapQ);
args >> GetOpt::Option('b', min_baseQ);
args >> GetOpt::Option('k', min_sites);
args >> GetOpt::Option('p', outgroup);
args >> GetOpt::Option('w', win_size);
args >> GetOpt::Option('o', output);
args >> GetOpt::Option('d', dist);
if (args >> GetOpt::OptionPresent('w'))
{
flag |= BAM_WINDOW;
win_size *= 1000;
}
if (args >> GetOpt::OptionPresent('h'))
flag |= BAM_HEADERIN;
if (args >> GetOpt::OptionPresent('p'))
flag |= BAM_OUTGROUP;
if (args >> GetOpt::OptionPresent('n'))
flag |= BAM_MINPOPSAMPLE;
if (args >> GetOpt::OptionPresent('t'))
flag |= BAM_SUBSTITUTE;
if (args >> GetOpt::OptionPresent('i'))
flag |= BAM_ILLUMINA;
if ((dist != "pdist") && (dist != "jc"))
{
msg = dist + " is not a valid distance option";
fatal_error(msg, __FILE__, __LINE__, &divergeUsage);
}
args >> GetOpt::GlobalOption(glob_opts);
// run some checks on the command line
// check if output option is valid
if ((output < 0) || (output > 1))
{
msg = "Not a valid output option";
fatal_error(msg, __FILE__, __LINE__, &divergeUsage);
}
// if no input BAM file is specified -- print usage and exit
if (glob_opts.size() < 2)
{
msg = "Need to specify BAM file name";
fatal_error(msg, __FILE__, __LINE__, &divergeUsage);
}
else
bamfile = glob_opts[0];
// check if specified BAM file exists on disk
if ((stat(bamfile.c_str(), &finfo)) != 0)
{
msg = "Specified input file: " + bamfile + " does not exist";
switch(errno)
{
case ENOENT:
std::cerr << "File not found" << std::endl;
break;
case EINVAL:
std::cerr << "Invalid parameter to stat" << std::endl;
break;
default:
std::cerr << "Unexpected error in stat" << std::endl;
break;
}
fatal_error(msg, __FILE__, __LINE__, 0);
}
// check if fastA reference file is specified
if (reffile.empty())
{
msg = "Need to specify fastA reference file";
fatal_error(msg, __FILE__, __LINE__, &divergeUsage);
}
// check is fastA reference file exists on disk
if ((stat(reffile.c_str(), &finfo)) != 0)
{
switch(errno)
{
case ENOENT:
std::cerr << "File not found" << std::endl;
break;
case EINVAL:
std::cerr << "Invalid parameter to stat" << std::endl;
break;
default:
std::cerr << "Unexpected error in stat" << std::endl;
break;
}
msg = "Specified reference file: " + reffile + " does not exist";
fatal_error(msg, __FILE__, __LINE__, 0);
}
//check if BAM header input file exists on disk
if (flag & BAM_HEADERIN)
{
if ((stat(headfile.c_str(), &finfo)) != 0)
{
switch(errno)
{
case ENOENT:
std::cerr << "File not found" << std::endl;
break;
case EINVAL:
std::cerr << "Invalid parameter to stat" << std::endl;
break;
default:
std::cerr << "Unexpected error in stat" << std::endl;
break;
}
msg = "Specified header file: " + headfile + " does not exist";
fatal_error(msg, __FILE__, __LINE__, 0);
}
}
// check to see if distance was specified, else use p-distance
if (dist.empty())
dist = "pdist";
// return the index of first non-optioned argument
return glob_opts[1];
}
divergeData::divergeData(void)
{
derived_type = DIVERGE;
dist = "pdist";
min_sites = 10;
win_size = 1;
output = 0;
}
void divergeData::init_diverge(void)
{
int i;
int length = end-beg;
int n = sm->n;
int npops = sm->npops;
segsites = 0;
try
{
types = new unsigned long long [length]();
pop_mask = new unsigned long long [npops]();
pop_nsmpl = new unsigned char [npops]();
pop_sample_mask = new unsigned long long [npops]();
min_pop_n = new unsigned short [npops]();
num_snps = new int [npops]();
hap.pos = new unsigned int [length]();
hap.idx = new unsigned int [length]();
hap.ref = new unsigned char [length]();
hap.seq = new unsigned long long* [n];
hap.base = new unsigned char* [n];
hap.rms = new unsigned short* [n];
hap.snpq = new unsigned short* [n];
hap.num_reads = new unsigned short* [n];
switch (output)
{
case 0:
ind_div = new unsigned short [n]();
break;
case 1:
pop_div = new unsigned short [npops]();
default:
break;
}
for (i=0; i < n; i++)
{
hap.seq[i] = new unsigned long long [length]();
hap.base[i] = new unsigned char [length]();
hap.rms[i] = new unsigned short [length]();
hap.snpq[i] = new unsigned short [length]();
hap.num_reads[i] = new unsigned short [length]();
}
}
catch (std::bad_alloc& ba)
{
std::cerr << "bad_alloc caught: " << ba.what() << std::endl;
}
}
void divergeData::destroy_diverge(void)
{
int i;
delete [] pop_mask;
delete [] types;
delete [] pop_nsmpl;
delete [] pop_sample_mask;
delete [] num_snps;
delete [] min_pop_n;
delete [] hap.pos;
delete [] hap.idx;
delete [] hap.ref;
switch (output)
{
case 0:
delete [] ind_div;
break;
case 1:
delete [] pop_div;
break;
default:
break;
}
for (i=0; i < sm->n; i++)
{
delete [] hap.seq[i];
delete [] hap.base[i];
delete [] hap.num_reads[i];
delete [] hap.snpq[i];
delete [] hap.rms[i];
}
delete [] hap.seq;
delete [] hap.base;
delete [] hap.snpq;
delete [] hap.rms;
delete [] hap.num_reads;
}
void divergeData::print_diverge(int chr)
{
int i;
std::cout << h->target_name[chr] << "\t" << beg+1 << "\t" << end+1 << "\t" << num_sites;
switch (output)
{
case 0:
for (i=0; i < sm->n; i++)
{
if (num_sites >= min_sites)
{
if (dist == "pdist")
{
std::cout << "\td[" << sm->smpl[i] << "]:";
std::cout << "\t" << std::fixed << std::setprecision(5) << (double)ind_div[i]/num_sites;
}
else if (dist == "jc")
{
double pdist = (double)ind_div[i]/num_sites;
double jc = -0.75*log(1.0-pdist*(4.0/3.0));
std::cout << "\td[" << sm->smpl[i] << "]:";
std::cout << "\t" << std::fixed << std::setprecision(5) << jc;
}
else
std::cout << "\td[" << sm->smpl[i] << "]:\t" << std::setw(7) << "NA";
}
else
std::cout << "\td[" << sm->smpl[i] << "]:\t" << std::setw(7) << "NA";
}
std::cout << std::endl;
break;
case 1:
for (i=0; i < sm->npops; i++)
{
if (num_sites >= min_sites)
{
std::cout << "\tFixed[" << sm->popul[i] << "]:\t" << pop_div[i];
std::cout << "\tSeg[" << sm->popul[i] << "]:\t" << num_snps[i];
std::cout << "\td[" << sm->popul[i] << "]:";
if (dist == "pdist")
{
if (flag & BAM_SUBSTITUTE)
std::cout << "\t" << std::fixed << std::setprecision(5) << (double)pop_div[i]/num_sites;
else
std::cout << "\t" << std::fixed << std::setprecision(5) << (double)(pop_div[i]+num_snps[i])/num_sites;
}
else if (dist == "jc")
{
double pdist;
double jc;
if (flag & BAM_SUBSTITUTE)
pdist = (double)pop_div[i]/num_sites;
else
pdist = (double)(pop_div[i]+num_snps[i])/num_sites;
jc = -0.75*log(1.0-pdist*(4.0/3.0));
std::cout << "\t" << std::fixed << std::setprecision(5) << jc;
}
else
{
std::cout << "\tFixed[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
std::cout << "\tSeg[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
std::cout << "\td[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
}
}
else
{
std::cout << "\tFixed[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
std::cout << "\tSeg[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
std::cout << "\td[" << sm->popul[i] << "]:\t" << std::setw(7) << "NA";
}
}
std::cout << std::endl;
break;
default:
break;
}
}
void divergeData::set_min_pop_n(void)
{
for (int j=0; j < sm->npops; j++)
min_pop_n[j] = (unsigned short)pop_nsmpl[j];
}
void divergeData::divergeUsage(void)
{
std::cerr << std::endl;
std::cerr << "Usage: popbam diverge [options] <in.bam> [region]" << std::endl;
std::cerr << std::endl;
std::cerr << "Options: -i base qualities are Illumina 1.3+ [ default: Sanger ]" << std::endl;
std::cerr << " -h FILE Input header file [ default: none ]" << std::endl;
std::cerr << " -d STR distance metric (pdist or jc) [ default: pdist ]" << std::endl;
std::cerr << " -o INT analysis option [ default: 0 ]" << std::endl;
std::cerr << " 0 : output individual divergence" << std::endl;
std::cerr << " 1 : population divergence statistics" << std::endl;
std::cerr << " -p STR sample name of outgroup [ default: reference ]" << std::endl;
std::cerr << " -w INT use sliding window of size (kb)" << std::endl;
std::cerr << " -k INT minimum number of sites in window [ default: 10 ]" << std::endl;
std::cerr << " -n INT minimum sample size per population [ default: all samples present ]" << std::endl;
std::cerr << " -t only count substitutions" << std::endl;
std::cerr << " -f FILE Reference fastA file" << std::endl;
std::cerr << " -m INT minimum read coverage [ default: 3 ]" << std::endl;
std::cerr << " -x INT maximum read coverage [ default: 255 ]" << std::endl;
std::cerr << " -q INT minimum rms mapping quality [ default: 25 ]" << std::endl;
std::cerr << " -s INT minimum snp quality [ default: 25 ]" << std::endl;
std::cerr << " -a INT minimum map quality [ default: 13 ]" << std::endl;
std::cerr << " -b INT minimum base quality [ default: 13 ]" << std::endl;
std::cerr << std::endl;
exit(EXIT_FAILURE);
}