-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstats.c
811 lines (725 loc) · 29.3 KB
/
stats.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
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
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
/* stats.c -- Collect chromium BX stats
Copyright (C) 2017 Genome Research Ltd.
Author: Petr Danecek <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#include <unistd.h> // for isatty()
#include <inttypes.h> // for PRIu64
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <getopt.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <math.h>
#include <htslib/sam.h>
#include <htslib/khash.h>
#include "dist.h"
#include "cov.h"
#include "bxhash.h"
#define FRAG_COV_SCALE 1000 // granularity of FRAG_COV distribution
#define MAX_FRAG_GAP 100e3 // reads with the same barcode separated by more than MAX_FRAG_GAP are thought to be from a different fragment
typedef struct
{
uint32_t bx; // binary representation of the BX string, e.g. CTACCGTTCCGCCTAT
uint32_t
flag_exclude:1, // exclude read because of: .. BAM flag filters
sclip_exclude:1, // .. number soft clipped bases > max_soft_clips
mq_exclude:1, // .. MQ < min_mq
bx_exclude:1, // .. barcode not listed amongst the known barcodes (-l, --barcodes-list)
anom_exclude:1, // .. anomalous read pair, reads mapped to different chromosomes
tid:28,
pos;
uint8_t read_len; // read length after soft clipping
}
elem_t;
typedef struct
{
uint32_t iread, len;
}
gap_t;
typedef struct
{
uint64_t
nmapped_bases, // number of mapped bases (soft-clips removed)
nmin_read_spacing, // reads too close (< min_read_spacing), possible duplicates
nmin_fragments, // barcodes excluded because no good fragment was found (all isolated reads)
nreads, // number of reads total
nprocessed, // total reads
nbarcodes, // number of unique barcodes
nflag_exclude, // reads excluded because of BAM flag filters
nmq_exclude, // excluded because of low MQ (< min_mq)
nsoft_clips, // excluded because too many soft clips (> max_soft_clips)
nmin_barcode_pairs; // too few read pairs per barcode (< nmin_barcode_pairs), possibly an error in the barcode sequence
cov_t
*cov_reads; // for coverage distribution by reads
dist_t
*d_nfrags, // distribution of fragment count per barcode
*d_frag_nreads, // distribution of read count per fragment
*d_bx_nreads, // distribution of read count per barcode
*d_frag_size, // fragment size distribution
*d_frag_size_seq, // sequence length per fragment size
*d_sclip1, // distribution of soft clips in first reads
*d_sclip2; // distribution of soft clips in second reads
}
stats_t;
typedef struct
{
uint64_t
nflag[16], // BAM flag stats
nbarcodeseq_has_n, // the barcode was not corrected, contains N's
nread_unlisted_bx, // read with a barcode not listed in the -l file
nread_good_bx, // reads in a good barcode (but not necessarily in a good fragment)
nbx_unlisted, // barcode not listed in the -l file
npair_anomalous, // reads mapped to different chromosomes
nunclipped, // mapped reads with no clips
nmapped_reads, // mapped reads with no clips
nno_bx; // excluded because no BX tag
stats_t all, good;
dist_t
*d_insert_size, // distribution of insert sizes
*d_frag_cov; // number of reads per fragment normalized by estimated fragment length
gap_t *gaps; // list of read indexes and the distance to the next read
int mbreaks, *breaks; // gap indices
int mgaps, melem;
elem_t *elem;
uint16_t exclude_flag, min_mq;
uint64_t checksum_wr, checksum_ro;
double max_frag_gap;
int frag_len_prior;
bxhash_t *bx_list; // superset of expected barcodes
htsFile *bam_fh;
bam_hdr_t *bam_hdr;
FILE **fh;
char **files, *tmp_dir;
uint32_t *cnt;
int argc, nfiles, debug, max_soft_clips, min_barcode_pairs;
int min_reads_per_fragment, min_read_spacing;
char **argv;
}
args_t;
static inline int cmp_elem(const void *a, const void *b)
{
elem_t *x = (elem_t *) a;
elem_t *y = (elem_t *) b;
if ( x->bx < y->bx ) return -1;
if ( x->bx > y->bx ) return 1;
if ( x->tid < y->tid ) return -1;
if ( x->tid > y->tid ) return 1;
if ( x->pos < y->pos ) return -1;
if ( x->pos > y->pos ) return 1;
return 0;
}
static inline int cmp_gap_len_desc(const void *_a, const void *_b)
{
gap_t *a = (gap_t *) _a;
gap_t *b = (gap_t *) _b;
if ( a->len < b->len ) return 1;
else if ( a->len > b->len ) return -1;
return 0;
}
static inline int cmp_int_asc(const void *_a, const void *_b)
{
int *a = (int *) _a;
int *b = (int *) _b;
if ( *a < *b ) return -1;
else if ( *a > *b ) return 1;
return 0;
}
volatile sig_atomic_t fatal_error_in_progress = 0;
static args_t *cleanup_data = NULL;
static void fatal_error_signal(int sig)
{
if ( fatal_error_in_progress ) raise(sig);
fatal_error_in_progress = 1;
if ( cleanup_data )
{
fprintf(stderr,"Signal caught, cleaning up %s...\n", cleanup_data->tmp_dir);
int i;
for (i=0; i<cleanup_data->nfiles; i++)
unlink(cleanup_data->files[i]);
rmdir(cleanup_data->tmp_dir);
}
signal(sig, SIG_DFL);
raise(sig);
}
static void process(args_t *args, const bam1_t *rec)
{
int i, pass = 1;
// flag stats
for (i=0; i<16; i++) if ( rec->core.flag&(1<<i) ) args->nflag[i]++;
elem_t elem;
memset(&elem, 0, sizeof(elem));
// exclude masked reads
if ( rec->core.flag & args->exclude_flag )
{
pass = 0;
elem.flag_exclude = 1;
args->all.nflag_exclude++;
}
// exclude reads with low mapping quality
else if ( rec->core.qual < args->min_mq )
{
pass = 0;
elem.mq_exclude = 1;
args->all.nmq_exclude++;
}
// exclude reads without the BX tag
const char *tag = NULL;
uint8_t *aux = bam_aux_get(rec,"BX");
if ( !aux || !(tag = bam_aux2Z(aux)) ) args->nno_bx++;
// count soft clips
int nsclip = 0;
for (i=0; i<rec->core.n_cigar; i++)
{
int cig = bam_cigar_op(bam_get_cigar(rec)[i]);
if ( cig!=BAM_CSOFT_CLIP ) continue;
nsclip += bam_cigar_oplen(bam_get_cigar(rec)[i]);
}
if ( nsclip > args->max_soft_clips )
{
pass = 0;
elem.sclip_exclude = 1;
args->all.nsoft_clips++;
}
if ( !(rec->core.flag&BAM_FUNMAP) )
{
if ( !nsclip ) args->nunclipped++;
args->nmapped_reads++;
}
elem.read_len = rec->core.l_qseq - nsclip < 256 ? rec->core.l_qseq - nsclip : 255;
if ( tag )
{
for (i=0; i<16; i++)
{
int base = char2nt(tag[i]);
if ( base>3 ) { args->nbarcodeseq_has_n++; tag = NULL; break; }
elem.bx |= base << (i*2);
}
if ( tag && tag[16] )
{
if ( tag[16] != '-' || tag[17] != '1' ) error("TODO: expected \"-1\" suffix, found \"%s\"\n", tag);
}
}
if ( !tag ) return;
args->all.nreads++;
if ( args->bx_list )
{
if ( !bxhash_has_key(args->bx_list, elem.bx) )
{
args->nread_unlisted_bx++;
elem.bx_exclude = 1;
}
}
if ( !(rec->core.flag&BAM_FUNMAP) )
{
dist_insert(rec->core.flag&BAM_FREAD1 ? args->all.d_sclip1 : args->all.d_sclip2, elem.read_len);
cov_insert(args->all.cov_reads, rec->core.tid, rec->core.pos, rec->core.pos + elem.read_len - 1);
}
if ( rec->core.flag&BAM_FUNMAP || rec->core.flag&BAM_FMUNMAP ) return;
if ( rec->core.tid!=rec->core.mtid )
{
pass = 0;
elem.anom_exclude = 1;
if ( rec->core.flag&BAM_FREAD1 ) args->npair_anomalous++;
}
if ( pass ) cov_insert(args->good.cov_reads, rec->core.tid, rec->core.pos, rec->core.pos + elem.read_len - 1);
if ( rec->core.flag&BAM_FREAD1 ) return;
if ( !elem.anom_exclude ) dist_insert(args->d_insert_size, abs(rec->core.isize));
elem.pos = !elem.anom_exclude ? rec->core.pos/2 + rec->core.mpos/2 : rec->core.pos;
elem.tid = rec->core.tid;
args->all.nmapped_bases += elem.read_len;
if ( pass ) args->good.nmapped_bases += elem.read_len;
args->checksum_wr += elem.bx;
i = elem.bx % args->nfiles;
if ( fwrite(&elem, sizeof(elem_t), 1, args->fh[i]) != 1 ) error("Could not write %d bytes\n", sizeof(elem_t));
args->cnt[i]++;
}
static int estimate_total_length(elem_t *elem, int n)
{
uint32_t i, len = 0;
for (i=0; i<n; i++) len += elem[i].read_len;
return 2*len - n*16; // the first read from the pair has 16 bases trimmed
}
/*
beg: points to a list of reads sorted by coordinate
n: number of reads
*/
static int analyze_fragments(args_t *args, elem_t *elem, int n)
{
int iend = 0, ibeg, nfrag = 0;
while ( iend < n )
{
ibeg = iend;
for (iend=ibeg+1; iend<n; iend++)
if ( elem[iend].pos - elem[iend-1].pos > args->max_frag_gap ) break;
int nreads = iend - ibeg;
if ( nreads < args->min_reads_per_fragment ) continue;
int len = elem[iend-1].pos - elem[ibeg].pos + (elem[iend-1].pos - elem[ibeg].pos) / (nreads - 1);
if ( !len ) continue;
int seq_len = estimate_total_length(elem+ibeg, nreads);
int cov = (float)FRAG_COV_SCALE * seq_len / len;
if ( cov<=0 ) continue; // reads ridiculously clipped
dist_insert(args->d_frag_cov, cov);
dist_insert(args->all.d_frag_size, len);
dist_insert(args->all.d_frag_nreads, nreads);
dist_insert_n(args->all.d_frag_size_seq, len, seq_len);
nfrag++;
}
return nfrag;
}
static void analyze_barcode(args_t *args, elem_t *elem, uint32_t cnt)
{
args->all.nbarcodes++;
dist_insert(args->all.d_bx_nreads, cnt);
// use only good reads in a barcode
int nelem = 0, i, bx_unlisted = 0;
hts_expand(elem_t, cnt, args->melem, args->elem);
for (i=0; i<cnt; i++)
{
if ( elem[i].flag_exclude ) continue;
if ( elem[i].sclip_exclude ) continue;
if ( elem[i].mq_exclude ) continue;
if ( elem[i].bx_exclude ) { bx_unlisted = 1; continue; }
if ( elem[i].anom_exclude ) { continue; }
args->elem[nelem++] = elem[i];
}
if ( bx_unlisted )
{
args->nbx_unlisted++;
return;
}
dist_insert(args->good.d_bx_nreads, nelem); // good reads in all barcodes
if ( nelem < args->min_barcode_pairs )
{
args->good.nmin_barcode_pairs++;
return;
}
int iend, ibeg = 0, nfrag = 0;
while ( ibeg < nelem )
{
for (iend=ibeg+1; iend<nelem; iend++)
if ( args->elem[ibeg].tid != args->elem[iend].tid ) break;
nfrag += analyze_fragments(args, &args->elem[ibeg], iend-ibeg);
ibeg = iend;
}
if ( !nfrag )
{
args->good.nmin_fragments++;
return;
}
args->nread_good_bx += 2*nelem; // good barcodes, but necessarily good fragments
args->good.nbarcodes++;
dist_insert(args->good.d_nfrags, nfrag);
}
static void analyze(args_t *args)
{
uint32_t i, max = 0;
for (i=0; i<args->nfiles; i++) if ( max < args->cnt[i] ) max = args->cnt[i];
elem_t *elem = (elem_t*) malloc(sizeof(elem_t)*max);
for (i=0; i<args->nfiles; i++)
{
if ( fclose(args->fh[i])!=0 ) error("Failed to close the file: %s\n", args->files[i]);
FILE *fp = fopen(args->files[i],"r");
if ( !fp ) error("Failed to open temporary file for reading %s: %s\n", args->files[i],strerror(errno));
int n = fread(elem, sizeof(elem_t), args->cnt[i], fp);
if ( n!=args->cnt[i] ) error("Read failed, read %d out of %d elements: %s .. %s\n", n,args->cnt[i],args->files[i],strerror(errno));
if ( fclose(fp)!=0 ) error("Failed to close the file: %s\n", args->files[i]);
unlink(args->files[i]);
qsort(elem, args->cnt[i], sizeof(elem_t), cmp_elem);
uint32_t ibeg = 0, iend;
while ( ibeg < args->cnt[i] )
{
for (iend = ibeg; iend < args->cnt[i]; iend++)
{
if ( elem[ibeg].bx != elem[iend].bx ) break;
args->checksum_ro += elem[iend].bx;
}
analyze_barcode(args, elem+ibeg, iend-ibeg);
ibeg = iend;
}
}
free(elem);
}
static void report(args_t *args)
{
if ( args->checksum_wr != args->checksum_ro )
{
fprintf(stderr,"Error: checksum failed .. %"PRIu64" vs %"PRIu64"\n", args->checksum_wr,args->checksum_ro);
printf("ERR\tchecksum_failed\t%"PRIu64"\t%"PRIu64"\n", args->checksum_wr,args->checksum_ro);
}
uint32_t i, n, beg, end;
printf("CMD\t%s", args->argv[0]);
for (i=1; i<args->argc; i++) printf(" %s",args->argv[i]);
printf("\n");
uint64_t glen = 0;
for (i=0; i<args->bam_hdr->n_targets; i++) glen += args->bam_hdr->target_len[i];
printf("LM\tgenome_length\t%"PRIu64"\n", glen);
printf("LM\tflags\t0x%x\n", args->exclude_flag);
printf("LM\tminMQ\t%d\n", args->min_mq);
printf("LM\tmax_frag_gap\t%.0f\n", args->max_frag_gap);
printf("LM\tmin_readpairs_per_fragment\t%d\n", args->min_reads_per_fragment);
printf("SN\tn_all_reads\t%"PRIu64"\n", args->all.nreads + args->nno_bx);
printf("SN\tn_bx_reads\t%"PRIu64"\n", args->all.nreads);
printf("SN\tn_good_reads\t%"PRIu64"\n", args->good.nreads);
printf("SN\tn_reads_in_good_barcodes\t%"PRIu64"\n", args->nread_good_bx); // good barcodes, but not necessarily good fragments
printf("SN\tn_mapped_reads\t%"PRIu64"\n", args->nmapped_reads);
printf("SN\tn_unclipped_reads\t%"PRIu64"\n", args->nunclipped);
printf("SN\tn_mapped_bx_bases\t%"PRIu64"\n", args->all.nmapped_bases);
printf("SN\tn_mapped_good_bases\t%"PRIu64"\n", args->good.nmapped_bases);
printf("SN\tn_all_barcodes\t%"PRIu64"\n", args->all.nbarcodes);
printf("SN\tn_excluded\t%"PRIu64"\n", args->all.nmq_exclude + args->all.nsoft_clips + args->all.nflag_exclude + args->nbarcodeseq_has_n);
printf("SN\tn_excluded_bx_has_n\t%"PRIu64"\n", args->nbarcodeseq_has_n);
printf("SN\tn_excluded_unlisted_bx\t%"PRIu64"\n", args->nread_unlisted_bx);
printf("SN\tn_excluded_mq\t%"PRIu64"\t%d\n", args->all.nmq_exclude,args->min_mq);
printf("SN\tn_excluded_anomalous_pair\t%"PRIu64"\n", args->npair_anomalous);
if ( args->max_soft_clips!=INT32_MAX ) printf("SN\tn_excluded_soft_clips\t%"PRIu64"\t%d\n", args->all.nsoft_clips,args->max_soft_clips);
printf("# Note: n_excluded_flag can be smaller than the sum of n_flag_* counts because one read can have multiple bits set\n");
printf("SN\tn_excluded_flag\t%"PRIu64"\n", args->all.nflag_exclude);
for (i=0; i<16; i++)
{
char *str = bam_flag2str(1<<i);
if ( *str )
{
if ( args->exclude_flag & (1<<i) )
{
printf("SN\tn_flag_%s\t%"PRIu64"\texcluded\n", str, args->nflag[i]);
}
else
printf("SN\tn_flag_%s\t%"PRIu64"\n", str, args->nflag[i]);
}
free(str);
}
printf("SN\tn_good_barcodes\t%"PRIu64"\n", args->good.nbarcodes);
printf("SN\tn_barcodes_excluded\t%"PRIu64"\n", args->all.nbarcodes - args->good.nbarcodes);
printf("SN\tn_barcodes_excluded_min_pairs\t%"PRIu64"\t%d\n", args->good.nmin_barcode_pairs, args->min_barcode_pairs);
printf("SN\tn_barcodes_excluded_min_frags\t%"PRIu64"\n", args->good.nmin_fragments);
printf("SN\tn_barcodes_excluded_unlisted_bx\t%"PRIu64"\t%d\n", args->nbx_unlisted,bxhash_size(args->bx_list));
printf("# DIST_ALL_SCLIP1, Number of bases left after soft-clipping in first reads (all reads)\n");
printf("# DIST_ALL_SCLIP2, Number of bases left after soft-clipping in second reads (all reads)\n");
printf("# DIST_COV_ALL_READS, Histogram of genome coverage, all reads\n");
printf("# DIST_COV_GOOD_READS, Histogram of genome coverage, good reads (filtered by flags, MQ, ...)\n");
printf("# BX_NALL_READS, Number of reads per barcode (all mapped reads)\n");
printf("# BX_NGOOD_READS, Number of good reads per barcode (all barcodes)\n");
printf("# FRAG_SIZE, Fragment size\n");
printf("# FRAG_SIZE_SEQ, Total sequence per fragment size\n");
printf("# FRAG_NREADS, Number of reads per fragment\n");
printf("# FRAG_COV, A fragment coverage estimate: number of reads per fragment normalized by length\n");
printf("# ISIZE, Insert size distribution\n");
n = dist_n(args->all.d_sclip1);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_sclip1, i, &beg, &end);
if ( !cnt ) continue;
printf("DIST_ALL_SCLIP1\t%u\t%"PRIu64"\n", beg, cnt);
}
n = dist_n(args->all.d_sclip2);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_sclip2, i, &beg, &end);
if ( !cnt ) continue;
printf("DIST_ALL_SCLIP2\t%u\t%"PRIu64"\n", beg, cnt);
}
n = cov_n(args->all.cov_reads);
for (i=0; i<n; i++)
{
uint64_t cnt = cov_get(args->all.cov_reads, i, &beg, &end);
if ( !cnt ) continue;
printf("DIST_COV_ALL_READS\t%u\t%"PRIu64"\n", beg, cnt);
}
n = cov_n(args->good.cov_reads);
for (i=0; i<n; i++)
{
uint64_t cnt = cov_get(args->good.cov_reads, i, &beg, &end);
if ( !cnt ) continue;
printf("DIST_COV_GOOD_READS\t%u\t%"PRIu64"\n", beg, cnt);
}
n = dist_n(args->all.d_bx_nreads);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_bx_nreads, i, &beg, &end);
if ( !cnt ) continue;
printf("BX_NALL_READS\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->good.d_bx_nreads);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->good.d_bx_nreads, i, &beg, &end);
if ( !cnt ) continue;
printf("BX_NGOOD_READS\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->all.d_frag_size);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_frag_size, i, &beg, &end);
if ( !cnt ) continue;
printf("FRAG_SIZE\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->all.d_frag_size_seq);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_frag_size_seq, i, &beg, &end);
if ( !cnt ) continue;
printf("FRAG_SIZE_SEQ\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->all.d_frag_nreads);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->all.d_frag_nreads, i, &beg, &end);
if ( !cnt ) continue;
printf("FRAG_NREADS\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->d_insert_size);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->d_insert_size, i, &beg, &end);
if ( !cnt ) continue;
printf("ISIZE\t%u\t%u\t%"PRIu64"\n", beg, end, cnt);
}
n = dist_n(args->d_frag_cov);
for (i=0; i<n; i++)
{
uint64_t cnt = dist_get(args->d_frag_cov, i, &beg, &end);
if ( !cnt ) continue;
printf("FRAG_COV\t%f\t%f\t%"PRIu64"\n", (float)beg/FRAG_COV_SCALE, (float)end/FRAG_COV_SCALE, cnt);
}
}
static void init_stats(stats_t *stats)
{
memset(stats, 0, sizeof(*stats));
stats->d_nfrags = dist_init(4);
stats->d_frag_size = dist_init(4);
stats->d_frag_size_seq = dist_init(4);
stats->d_frag_nreads = dist_init(4);
stats->d_bx_nreads = dist_init(4);
stats->d_sclip1 = dist_init(3);
stats->d_sclip2 = dist_init(3);
stats->cov_reads = cov_init(1000);
}
static void destroy_stats(stats_t *stats)
{
dist_destroy(stats->d_nfrags);
dist_destroy(stats->d_frag_size);
dist_destroy(stats->d_frag_size_seq);
dist_destroy(stats->d_frag_nreads);
dist_destroy(stats->d_bx_nreads);
dist_destroy(stats->d_sclip1);
dist_destroy(stats->d_sclip2);
cov_destroy(stats->cov_reads);
}
static void init(args_t *args)
{
args->files = (char**) calloc(args->nfiles, sizeof(char*));
args->fh = (FILE**) calloc(args->nfiles, sizeof(FILE*));
args->cnt = (uint32_t*) calloc(args->nfiles, sizeof(uint32_t));
args->d_insert_size = dist_init(4);
args->d_frag_cov = dist_init(4);
int i,len = strlen(args->tmp_dir);
if ( len<6 || strcmp("XXXXXX",args->tmp_dir+len-6) )
{
char *tmp = (char*) malloc(len+7);
sprintf(tmp,"%sXXXXXX",args->tmp_dir);
args->tmp_dir = tmp;
}
else
args->tmp_dir = strdup(args->tmp_dir);
char *tmp_dir = mkdtemp(args->tmp_dir);
if ( !tmp_dir ) error("mkdtemp(%s) failed: %s\n", args->tmp_dir,strerror(errno));
fprintf(stderr,"Writing to tempdir %s\n", tmp_dir);
init_stats(&args->all);
init_stats(&args->good);
cleanup_data = args;
signal(SIGINT, fatal_error_signal);
len = strlen(tmp_dir);
for (i=0; i<args->nfiles; i++)
{
args->files[i] = (char*) malloc(len+11);
snprintf(args->files[i],len+11,"%s/%d",tmp_dir,i);
args->fh[i] = fopen(args->files[i],"w");
if ( !args->fh[i] ) error("Failed to open temporary file %s: %s\n", args->files[i],strerror(errno));
}
}
static void destroy(args_t *args)
{
dist_destroy(args->d_insert_size);
dist_destroy(args->d_frag_cov);
destroy_stats(&args->good);
destroy_stats(&args->all);
bxhash_destroy(args->bx_list);
rmdir(args->tmp_dir);
free(args->tmp_dir);
free(args->breaks);
free(args->gaps);
free(args->elem);
int i;
for (i=0; i<args->nfiles; i++) free(args->files[i]);
free(args->cnt);
free(args->fh);
free(args->files);
free(args);
}
static void usage(void)
{
printf("About: The program collects BX statistics from BAM files\n");
printf("Usage: bxcheck stats [OPTIONS] file.bam\n");
printf("Options:\n");
printf(" --debug Print debugging information\n");
printf(" --prior-exp Fragment lengths distributed exponentially [this is the default]\n");
printf(" --prior-fixed Fragment lengths determined using a fixed threshold\n");
printf(" --prior-norm Fragment lengths distributed normally\n");
printf(" -b, --pairs-per-barcode INT Minimum number of good read pairs per barcode [2]\n");
printf(" -e, --exclude-flag INT|STR Reads to exclude [UNMAP,MUNMAP,SECONDARY,QCFAIL,DUP,SUPPLEMENTARY]\n");
printf(" -g, --max-fragment-gap NUMBER Maximum gap within a fragment [%g]\n",MAX_FRAG_GAP);
printf(" -l, --barcodes-list FILE List of 10x barcodes\n");
printf(" -m, --mapping-qual INT Minimum mapping quality for the fragment size distribution [20]\n");
printf(" -n, --n-temp-files INT Create up to INT temporary files while sorting by barcode [100]\n");
printf(" -r, --reads-per-fragment INT Minimum number of good reads per fragment [2]\n");
printf(" -R, --read-spacing INT Minimum read spacing [10]\n");
printf(" -s, --max-soft-clips INT Exclude reads with more than INT soft-clipped bases [inf]\n");
printf(" -t, --temp-dir STR Temporary directory for sorting reads [/tmp/bxcheck.XXXXXX]\n");
printf("\n");
exit(-1);
}
int main_stats(int argc, char *argv[])
{
args_t *args = (args_t*) calloc(1,sizeof(args_t));
args->min_mq = 20;
args->exclude_flag = BAM_FUNMAP|BAM_FMUNMAP|BAM_FSECONDARY|BAM_FQCFAIL|BAM_FDUP|BAM_FSUPPLEMENTARY;
args->tmp_dir = "/tmp/bxcheck.XXXXXX";
args->nfiles = 100;
args->max_soft_clips = INT32_MAX;
args->min_barcode_pairs = 2;
args->min_reads_per_fragment = 2;
args->min_read_spacing = 10;
args->max_frag_gap = MAX_FRAG_GAP;
args->argc = argc;
args->argv = argv;
#if 0
args->good.cov_reads = cov_init();
cov_insert(args->good.cov_reads, 2, 1, 1);
cov_insert(args->good.cov_reads, 2, 5, 6);
cov_insert(args->good.cov_reads, 2, 6, 7);
cov_insert(args->good.cov_reads, 2, 10, 19);
cov_insert(args->good.cov_reads, 2, 10, 19);
cov_insert(args->good.cov_reads, 2, 10, 19);
cov_insert(args->good.cov_reads, 2, 10, 19);
uint32_t beg,end;
int i,n = cov_n(args->good.cov_reads);
for (i=0; i<n; i++)
{
uint64_t cnt = cov_get(args->good.cov_reads, i, &beg, &end);
if ( !cnt ) continue;
printf("COV_HIST_GOOD_READS\t%d\t%"PRIu64"\n", beg, cnt);
}
cov_destroy(args->good.cov_reads);
return 0;
#endif
static const struct option loptions[] =
{
{"help", no_argument, NULL, 'h'},
{"debug", no_argument, NULL, 3},
{"exclude-flag", required_argument, NULL, 'e'},
{"pairs-per-barcode", required_argument, NULL, 'b'},
{"reads-per-fragment", required_argument, NULL, 'r'},
{"read-spacing", required_argument, NULL, 'R'},
{"max-soft-clips", required_argument, NULL, 's'},
{"max-fragment-gap", required_argument, NULL, 'g'},
{"mapping-qual", required_argument, NULL, 'm'},
{"n-temp-files", required_argument, NULL, 'n'},
{"temp-dir", required_argument, NULL, 't'},
{"barcodes-list", required_argument, NULL, 'l'},
{NULL, 0, NULL, 0}
};
char *tmp;
int opt;
while ( (opt=getopt_long(argc,argv,"?hm:n:t:e:s:b:r:R:l:g:",loptions,NULL))>0 )
{
switch (opt)
{
case 3 :
args->debug = 1;
break;
case 'e':
args->exclude_flag = bam_str2flag(optarg);
if ( args->exclude_flag<0 ) { fprintf(stderr,"Could not parse --exclude-flag %s\n", optarg); return 1; }
break;
case 'l':
args->bx_list = bxhash_init(optarg);
break;
case 't':
args->tmp_dir = optarg;
break;
case 's':
if ( strcasecmp("inf",optarg) )
{
args->max_soft_clips = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --max-soft-clips %s\n", optarg);
}
break;
case 'r':
args->min_reads_per_fragment = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --reads-per-fragment %s\n", optarg);
break;
case 'R':
args->min_read_spacing = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --read-spacing %s\n", optarg);
break;
case 'b':
args->min_barcode_pairs = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --pairs-per-barcode %s\n", optarg);
break;
case 'g':
args->max_frag_gap = strtod(optarg, &tmp);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --max-fragment-gap %s\n", optarg);
break;
case 'm':
args->min_mq = strtol(optarg, &tmp, 10);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --mappinq-qual %s\n", optarg);
break;
case 'n':
args->nfiles = strtol(optarg, &tmp, 10);
if ( tmp==optarg || *tmp ) error("Could not parse the argument: --nfiles %s\n", optarg);
break;
case '?':
case 'h': usage();
default: error("Unknown argument: %s\n", optarg);
}
}
char *bam_fname = NULL;
if ( optind<argc )
bam_fname = argv[optind++];
if ( !bam_fname )
{
if ( !isatty(STDIN_FILENO) ) bam_fname = "-";
usage();
}
if ((args->bam_fh = sam_open(bam_fname, "r")) == 0) error("Failed to open: %s\n", bam_fname);
args->bam_hdr = sam_hdr_read(args->bam_fh);
bam1_t *bam_line = bam_init1();
init(args);
while (sam_read1(args->bam_fh, args->bam_hdr, bam_line) >= 0) process(args, bam_line);
analyze(args);
report(args);
bam_destroy1(bam_line);
bam_hdr_destroy(args->bam_hdr);
if ( hts_close(args->bam_fh)!=0 ) error("Close failed: %s\n",strcmp("-",bam_fname)?bam_fname:"STDIN");
destroy(args);
return 0;
}