-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtmp.parseBAM.pl
879 lines (821 loc) · 30.6 KB
/
tmp.parseBAM.pl
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
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
#!/usr/bin/env perl
#######################################################
# parsing the BAM output from bowtie/bowtie2/tophat,
# 1. stat: stat mapping reads for each sample
# 2. view: create bedgraph views for each bams
# 3. tags: find tags in each bam
#
# 2015-06-02 Wang Ming wangmcas(AT)gmail.com
#######################################################
use strict;
use warnings;
use Cwd qw(abs_path cwd);
use File::Which;
use File::Path qw(make_path remove_tree);
use File::Basename qw(basename dirname);
use File::Spec::Functions qw(catfile catdir);
use POSIX qw(strftime);
use Getopt::Std;
use Data::Dumper;
my %tools = ("samtools" => '',
"bedtools" => '',
"htseq-count" => '',
"sort2bed.pl" => '',
"search_cov_regions.pl" => '',
"sort_to_position_sig.pl" => '',
"sort2candi.pl" => '',
"chk_seq2rnaz.pl" => '',
"featureCounts" => '');
my %func = %{check_tools(\%tools)};
usage() if(@ARGV == 0);
my $command = shift(@ARGV);
my %prog = (stat => \&statBAM,
view => \&viewBAM,
tags => \&bam2tags,
demo => \&rundemo);
die("Unknown command [$command] \n") if (!defined($prog{$command}));
&{$prog{$command}};
exit(0);
sub usage {
die(qq/
Usage: parseBAM.pl <command> [arguments]\n
Command: stat count mapping reads for each BAM
view create "*.bedgraph" files for each BAM
tags find tags from each BAM files (sRNA candidates)
demo run the above 3 programs to test your configuration.
\n/);
}
#################################################
# 1. statistic BAM files (mapping reads)
#################################################
sub stat_usage {
die(qq/
Usage: parseBAM.pl stat [options] <inbam.list>
<inbam.list> each line contain one BAM file
Options: -o output dir, [Results]
\n/);
}
sub statBAM {
my %opts = (o => 'Results');
getopts('o:', \%opts);
stat_usage() if (@ARGV != 1);
my $stat_dir = catdir($opts{o}, '1.stat_bams');
my $stat_file = catfile($stat_dir, 'bam.stat');
make_path($stat_dir) if(! -d $stat_dir);
open my $fh_st, "> $stat_file" or die "Cannot open file: $stat_file, $!\n";
my @stats = ();
for my $bam ( readBAMlist(@ARGV) ) {
my $mapped = qx($func{'samtools'} idxstats $bam | head -n1 |awk '{print \$3}');
chomp($mapped);
push @stats, $mapped;
print show_date() . " " . $bam . "\n";
print $fh_st $bam . ":\t" . $mapped, "\n";
}
close $fh_st;
# return @stats;
}
sub readBAMlist {
# only read one in each line
my $bamlist = $_[0];
die("[$bamlist] bam list file not exists\n") if(! -e $bamlist);
my @bamlists = ();
open my $fh_bam, "< $bamlist" or die "Cannot open file $bamlist, $!\n";
while(<$fh_bam>) {
# skip blank lines and #comment lines
next if(/(^\s*$)|^\#/);
s/^\s+|\s+$//; # trim blanks at both ends
die("[$_] file not exists in line-[$.] of $bamlist\n") if(! -e $_);
push @bamlists, $_;
}
close $fh_bam;
return (sort @bamlists);
}
#################################################
# 2. Create bedgraph using BAM files
#################################################
sub view_usage {
die(qq/
Usage: parseBAM.pl view [options] <bam.list>
<bam.list> each line contain one BAM file
Options: -o <STR> output dir [Results]
-f <STR> reference FASTA file
-s <float> Scale the coverage by a constant factor
0 reads perl million (RPM)
float specific value
1 unscale [default: 1]
Example:
parseBAM.pl view -o Results -s 1 -f ref.fa inbam.list > log
\n/);
}
sub viewBAM {
my %opts = (o => 'Results',
s => 1);
getopts('s:f:o:', \%opts);
view_usage() if (@ARGV == 0);
die("[-s $opts{s}] is not a float\n") if(! $opts{s} =~ /^\d+\.*\d*$/);
if($opts{s} < 0 ) {
die("[-s $opts{s}] should be a positive float number\n");
}elsif($opts{s} > 100 ) {
warn("[-s $opts{s}] too big for scale, is it correct?\n");
}else {
}
die("[-f] reference fasta file not found\n") if(! defined $opts{f});
die("[-f] reference fasta file not found\n") if(! -e $opts{f});
system"$func{'samtools'} faidx $opts{f}";
my $ref_idx = $opts{f} . '.fai';
my $view_dir = catdir($opts{o}, '2.view_bedgraph');
my $view_log = catfile($view_dir, 'view_bedgraph.log');
make_path($view_dir) if(! -d $view_dir);
open my $fh_view, "> $view_log" or die "Cannot write to $view_log, $!\n";
for my $bam ( readBAMlist(@ARGV) ) {
my @runs = bam2bg($bam, $ref_idx, $opts{s}, $view_dir);
push @runs, "\n";
for my $r (@runs) {
print $r . "\n";
print $fh_view $r . "\n";
system"$r";
}
}
close $fh_view;
}
sub bam2bg {
my ($bam, $ref_idx, $s, $outdir) = @_;
my $mapped = qx($func{'samtools'} idxstats $bam | head -n1 |awk '{print \$3}');
chomp($mapped);
die("It's a blank BAM file: $bam\n") if(! $mapped);
my $scale = sprintf"%.4f", 1000000/$mapped;
$scale = $s if ($s > 0);
my $bam_name = basename($bam);
$bam_name =~ s/(\.|\.s.|\.f.s.|\.trim\.gz\.f\.s\.)bam//;
my $smp_dir = catdir($outdir, $bam_name);
make_path($smp_dir) if(! -d $smp_dir);
my $fwd_bam = catfile($smp_dir, $bam_name.'.fwd.bam');
my $rev_bam = catfile($smp_dir, $bam_name.'.rev.bam');
my @runs = ();
if($bam_name =~ /_[12]$/) {
@runs = splitPEBAM($bam, $fwd_bam, $rev_bam);
}else{
@runs = splitSEBAM($bam, $fwd_bam, $rev_bam);
}
my $fwd_bg = catfile($smp_dir, $bam_name . '.fwd.bedgraph');
my $rev_bg = catfile($smp_dir, $bam_name . '.rev.bedgraph');
push @runs, "bedtools genomecov -bg -split -scale $scale -ibam $fwd_bam -g $ref_idx > $fwd_bg";
push @runs, "bedtools genomecov -bg -split -scale $scale -ibam $rev_bam -g $ref_idx > $rev_bg";
return @runs;
}
sub splitSEBAM {
my ($bam, $fwdbam, $revbam) = @_;
my @ps = ();
push @ps, "$func{'samtools'} view -b -F 16 $bam > $fwdbam";
push @ps, "$func{'samtools'} view -b -f 16 $bam > $revbam";
return @ps;
}
sub splitPEBAM {
# for dUTP strand-specific RNA-Seq
# forward : reverse(read_1), forward(read_2)
# reverse : forward(read_1), reverse(read_2)
my ($bam, $fwdbam, $revbam) = @_;
my @ps = ();
push @ps, "$func{'samtools'} view -b -f 80 $bam > fwd2.bam"; # reverse of read_1
push @ps, "$func{'samtools'} view -b -f 128 -F 16 $bam > fwd1.bam"; # forward of read_2
push @ps, "$func{'samtools'} index fwd1.bam";
push @ps, "$func{'samtools'} index fwd2.bam";
push @ps, "$func{'samtools'} merge -f fwd.bam fwd1.bam fwd2.bam";
push @ps, "$func{'samtools'} view -b -f 64 -F 16 $bam > rev2.bam"; # forward of read_1
push @ps, "$func{'samtools'} view -b -f 144 $bam > rev1.bam"; # reverse of read_2
push @ps, "$func{'samtools'} index rev1.bam";
push @ps, "$func{'samtools'} index rev2.bam";
push @ps, "$func{'samtools'} merge -f rev.bam rev1.bam rev2.bam";
push @ps, "mv -f fwd.bam $fwdbam";
push @ps, "mv -f rev.bam $revbam";
push @ps, "rm -f fwd1.bam* fwd2.bam* rev1.bam* rev2.bam*";
return @ps;
}
sub show_date {
my $date = strftime "[%Y-%m-%d %H:%M:%S]", localtime;
return $date;
}
#################################################
# 3. find tags from BAM mapping files
#################################################
sub bam2tags_usage {
die(qq/
Usage: parseBAM.pl tags [options] <inbam.list>
<ibam.list> each line contain one BAM file
Options: -o <STR> Output dir [Results]
-f <STR> reference file in fasta format
-g <STR> annotation file in GFF\/GTF format
-t <STR> feature type in GFF file, gene,exon: [gene]
-s <float> scale for calling coverage
0 : reads per million (RPM)
0-1 : the specific value
1 : unscale [default: 1]
-c <INT> cut-off for determine edges of tags [100]
-d <STR> The database for RNAz analysis.
see: \/home\/wangming\/work\/database\/H37Rv\/SixRv.fa
Control flow:
-n run 'find tags' 0=no, 1=yes [1]
-m run 'merge tags' 0=no, 1=yes, [1]
-e run 'count reads' 0=no, 1=yes, [1]
-z run 'RNAz analysis' 0=no, 1=yes, [1]
RNAz will only report the region with highest z-score in
input sequence (z-score > 0.5)[1]
-q run 'parse report' 0=no, 1=yes [1]
Example:
parseBAM.pl tags -o outdir -f ref.fa -g ref.gff inbam.list > log
\n/);
}
sub bam2tags {
my $my_db_file = '/home/wangming/work/database/H37Rv/SixRv.fa';
my %opts = (o => 'Results',
f => '',
g => '',
t => 'gene',
s => 1,
c => 100,
d => $my_db_file,
n => 1,
m => 1,
e => 1,
z => 1,
q => 1);
getopts("o:f:g:t:s:c:d:n:m:e:z:q:", \%opts);
bam2tags_usage() if(@ARGV != 1);
die("[-f] reference file not exist\n") if(! -e $opts{f});
die("[-g] annotation file not exist\n") if(! -e $opts{g});
my $RNAz_db = abs_path($opts{d});
system"samtools faidx $opts{f}";
my $ref_idx = $opts{f} . '.fai';
my $tag_dir = catdir($opts{o}, '3.find_tags');
my @tags_files = ();
# find tags
for my $bam ( readBAMlist(@ARGV) ) {
$opts{s} = 0 if(! defined $opts{s});
my ($tag_out, @run_tags) = findtags($bam, $ref_idx, $opts{f}, $opts{g}, $opts{t}, $opts{s}, $opts{c}, $tag_dir);
push @tags_files, $tag_out; # DO NOT modify this line
run_cmd($opts{n}, @run_tags);
}
# merge tags
my $merge_dir = catdir($opts{o}, '4.merge_tags');
make_path($merge_dir) if(! -d $merge_dir);
my @run_merges = merge2tags($merge_dir, @tags_files);
push @run_merges, "echo ";
run_cmd($opts{m}, @run_merges);
# filter tags
my $merged_file = catfile($merge_dir, 'merged.bed');
my $lib_num = @tags_files;
# my $lib_num = 1;
my @sub_beds = ();
if( not_blank_file($merged_file) ) {
@sub_beds = filtermerged($merge_dir, $merged_file, $lib_num);
}
for my $tag (sort @sub_beds) {
my @run_filts = ();
my $tag_dir = dirname($tag);
my $tag_new = catfile($tag_dir, 'tag.newID.bed');
my $tag_txt = catfile($tag_dir, 'tag.newID.txt');
my $tag_pos = catfile($tag_dir, 'tag.newID.pos.txt');
my $tag_sRNA = catfile($tag_dir, 'tag.newID.pos_sRNA.txt');
my $tag_count = catfile($tag_dir, 'tag.newID.pos_sRNA.count.txt');
renameID($tag, 4, $tag_new); # id in col-4
push @run_filts, "perl $func{'sort2bed.pl'} -t bed2sort -i $tag_new -o $tag_txt";
push @run_filts, "perl $func{'sort_to_position_sig.pl'} -f $opts{f} -g $opts{g} -t $opts{t} $tag_txt > $tag_pos";
push @run_filts, "perl $func{'sort2candi.pl'} $tag_pos";
push @run_filts, "echo ";
run_cmd($opts{e}, @run_filts);
# count + tpm
my @run_counts = ();
my @hts = ();
if($opts{e}) {
my $flag = 1;
my @feas = ();
for my $bam ( readBAMlist(@ARGV) ) {
@feas = featureCounts2count($bam, $tag_sRNA, $tag_count, $flag);
push @run_counts, @feas;
$flag ++;
}
if(@feas) {
push @run_counts, "paste $tag_sRNA $tag_sRNA\.TPM\.* > $tag_count";
}
my $tmp_summary = catfile($tag_dir, basename($tag_sRNA) . '.tmp1.*.summary');
my $tag_summary = $tag_count;
$tag_summary =~ s/\.txt/.summary/;
push @run_counts, "cat $tmp_summary > $tag_summary";
}
push @run_counts, "rm -rf $tag_sRNA\.tmp1\.\* $tag_sRNA\.tmp2\.\* $tag_sRNA\.TPM\.\* ";
push @run_counts, "echo ";
run_cmd($opts{e}, @run_counts);
# rnaz analysis
my @run_rnazs = ();
if($opts{z}) {
my $rnaz_dir = catdir(dirname($tag_sRNA), 'RNAz_out');
make_path($rnaz_dir) if (! -d $rnaz_dir);
push @run_rnazs, seq2RNAz($tag_sRNA, $opts{f}, $RNAz_db, $rnaz_dir);
}
push @run_rnazs, "echo ";
run_cmd($opts{z}, @run_rnazs);
# wrap output
if( $opts{q} ) {
my $wrap_dir = catdir($opts{o}, '5.report');
make_path($wrap_dir) if(! -d $wrap_dir);
my $sRNA_RNAz = catfile(catdir($tag_dir, 'RNAz_out'), 'best_RNAz.bed');
my $sRNA_report = catfile($wrap_dir, basename($tag_dir) . '.report.txt');
my $rpt_lines = wrap_output($tag_txt, $tag_sRNA, $tag_count, $sRNA_RNAz);
my $header = '#colum name:[1-12]ID,chr,length,start,end,strand,pre-gene,gap-1,next-gene,gap-2,direction,description'.
"\n" . '#exp [13...] count:tpm' .'[last 2-col]RNAz old_ID';
open my $fh_rpt, "> $sRNA_report" or die "$!";
print $fh_rpt $header, "\n";
print $fh_rpt $rpt_lines;
close $fh_rpt;
}
}
}
#
sub run_cmd {
my @in = @_;
my $run = shift(@in);
if($run) {
for my $r (@in) {
print $r . "\n";
system"$r";
}
}
}
sub findtags {
my ($bam, $ref_idx, $ref, $gff, $feature_type, $s, $cov_cutoff, $outdir) = @_;
my $t_mapped = qx($func{'samtools'} idxstats $bam | head -n1 |awk '{print \$3}');
chomp($t_mapped);
die("It's a blank BAM file") if(! $t_mapped);
my $scale = sprintf"%.4f", 1000000/$t_mapped;
$scale = $s if ($s > 0);
my $bam_name = basename($bam);
$bam_name =~ s/(\.|\.s.|\.f.s.|\.trim\.gz\.f\.s\.)bam//;
my $smp_dir = catdir($outdir, $bam_name);
make_path($smp_dir) if(! -d $smp_dir);
my $fwd_bam = catfile($smp_dir, $bam_name.'.fwd.bam');
my $rev_bam = catfile($smp_dir, $bam_name.'.rev.bam');
my @runs = ();
if($bam_name =~ /_[12]$/) {
@runs = splitPEBAM($bam, $fwd_bam, $rev_bam);
}else{
@runs = splitSEBAM($bam, $fwd_bam, $rev_bam);
}
my $fwd_cov = catfile($smp_dir, $bam_name . '.coverage.p');
my $rev_cov = catfile($smp_dir, $bam_name . '.coverage.n');
my $tag_p = catfile($smp_dir, $bam_name . '.tag.p');
my $tag_n = catfile($smp_dir, $bam_name . '.tag.n');
my $tag = catfile($smp_dir, $bam_name . '.tag.txt');
my $tag_pos = catfile($smp_dir, $bam_name . '.tag.pos.txt');
push @runs, "$func{'bedtools'} genomecov -d -split -scale $scale -ibam $fwd_bam -g $ref_idx > $fwd_cov";
push @runs, "$func{'bedtools'} genomecov -d -split -scale $scale -ibam $rev_bam -g $ref_idx > $rev_cov";
push @runs, "perl $func{'search_cov_regions.pl'} -c $cov_cutoff -s + $fwd_cov > $tag_p";
push @runs, "perl $func{'search_cov_regions.pl'} -c $cov_cutoff -s - $rev_cov > $tag_n";
push @runs, "cat $tag_p $tag_n > $tag";
push @runs, "perl $func{'sort_to_position_sig.pl'} -f $ref -g $gff -t $feature_type $tag > $tag_pos";
push @runs, "perl $func{'sort2candi.pl'} $tag_pos";
return ($tag, @runs);
}
sub merge2tags {
my $outdir = shift(@_);
my @infiles = @_;
my @runs = ();
my $count = 1;
my $beds_line = '';
for my $i (sort @infiles) {
my $i_bed = catfile($outdir, basename($i));
$i_bed =~ s/\.txt$/.bed/;
# add prefix to the id
my $flag = sprintf"%02d", $count;
if(@infiles == 1) {
push @runs, "sed -e \'s/^/LibN\_/\' $i > $i\.tmp";
}else{
push @runs, "sed -e \'s/^/Lib$flag\_/\' $i > $i\.tmp";
}
# sort 2 bed
push @runs, "perl $func{'sort2bed.pl'} -t sort2bed -i $i\.tmp -o $i_bed";
push @runs, "rm -rf $i\.tmp";
$beds_line .= $i_bed. " ";
$count++;
}
my $bed_all = catfile($outdir, 'all_tags.bed');
my $bed_merge = catfile($outdir, 'merged.bed');
push @runs, "cat $beds_line | sort -k1,1 -k2,2n | cut -f1-6 > $bed_all";
push @runs, "$func{'bedtools'} merge -s -d -1 -c 4,5,6 -o distinct,distinct,distinct -i $bed_all > $bed_merge";
push @runs, "rm -rf $beds_line";
return @runs;
}
sub renameID {
my ($in, $col, $out) = @_;
$col --; # perl is 0-leftmost index
my $newline = '';
if( not_blank_file($in) ) {
open my $fh_in, "< $in" or die "$!";
while(<$fh_in>) {
chomp;
next if(/(^\s*$)|(^\#)/);
my @tabs = split /\t/;
my $newid = my $id = $tabs[$col];
$newid = (split /\,|\:/, $newid)[0];
$tabs[$col] = $newid;
$newline .= join("\t",@tabs, $id) . "\n";
}
close $fh_in;
}
open my $fh_out, "> $out" or die "$!";
print $fh_out $newline;
close $fh_out;
}
sub filtermerged {
# it's designed for tags merged from differert libraries in various length.
# default: lib01 18-40 nt, lib02 40-80 nt, lib03 80-140 nt, lib04 >140 nt
# with -40 to +40 range of lib
my ($outdir, $merged, $files_num) = @_;
my %lib = ();
my %tag = ();
my $count = 1;
# create sub dirs
for(my $i=1; $i<=$files_num; $i++){
my $flag = sprintf "%02d", $i;
my $sub_dir = catdir($outdir, "Lib$flag");
$sub_dir = catdir($outdir, 'LibN') if($files_num == 1);
make_path($sub_dir);
$lib{'tag'}->{$count} = catfile($sub_dir, 'tag.bed');
$lib{'del'}->{$count} = catfile($sub_dir, 'del.bed');
$count ++;
}
$lib{'others'}->{0} = catfile($outdir, 'unfiltered.txt');
@{$tag{'other'}->{0}} = ();
open my $fh_mg, "< $merged" or die "Cannot open $merged, $!";
while(<$fh_mg>) {
chomp;
next if(/(^\s*$)|(^\#)/);
my $line = $_;
my ($start, $end) = (split /\t/, $_)[1,2];
my $len = $end - $start + 1;
if(/Lib04/){
if($len >=100){
push @{$tag{'tag'}->{4}}, $line;
}else{
push @{$tag{'del'}->{4}}, $line;
}
}elsif(/Lib03/){
if($len >= 40 && $len <= 180){
push @{$tag{'tag'}->{3}}, $line;
}else{
push @{$tag{'del'}->{3}}, $line;
}
}elsif(/Lib02/){
if($len >= 40 && $len <= 120){
push @{$tag{'tag'}->{2}}, $line;
}else{
push @{$tag{'del'}->{2}}, $line;
}
}elsif(/Lib01/){
if($len >= 20 && $len <= 80){
push @{$tag{'tag'}->{1}}, $line;
}else{
push @{$tag{'del'}->{1}}, $line;
}
}elsif(/LibN/){
if($len >= 20){
push @{$tag{'tag'}->{1}}, $line;
}else{
push @{$tag{'del'}->{1}}, $line;
}
}else{
push @{$tag{'other'}->{0}}, $line;
}
}
close $fh_mg;
for my $type (sort keys %lib){
for my $n (sort keys %{$lib{$type}}){
open my $fh_n, "> $lib{$type}->{$n}" or die "$!";
if(exists $tag{$type}->{$n}){
print $fh_n join("\n", @{$tag{$type}->{$n}}), "\n";
}else{
}
close $fh_n;
}
}
return (sort values %{$lib{'tag'}});
}
sub txt2count {
my ($bam, $infile, $outfile, $flag) = @_;
my $bam_name = basename($bam);
$bam_name =~ s/(\.|\.s.|\.f.s.|\.trim\.gz\.f\.s\.)bam//;
my $lib_type = ($bam_name =~ /\_[12]$/)?'reverse':'yes'; # PE=reverse, SE=yes
my @runs = ();
my $infile_gff = $infile;
$infile_gff =~ s/\.txt$/.gff/;
if( not_blank_file($infile) ) {
push @runs, "perl $func{'sort2bed.pl'} -t sort2gff -f exon -i $infile -o $infile_gff";
push @runs, "$func{'htseq-count'} -q -f bam -s $lib_type -t exon $bam $infile_gff > $infile\.tmp";
push @runs, "sort -k1 $infile.tmp | sed -e \'/^\_/d\' > $infile\.tmp2";
# add tpm
# count tpm
my $mapped = qx($func{'samtools'} idxstats $bam | head -n1 |awk '{print \$3}');
my $m_scale = sprintf"%.4f", $mapped/1000000;
push @runs, "awk \'{printf(\"\%s\\t\%s\\t\%.4f\\n\", \$1, \$2, \$2/$m_scale)}\' $infile\.tmp2 | cut -f2-3 > $infile\.TPM\.$flag";
}
return @runs;
}
sub featureCounts2count {
my ($bam, $in, $outfile, $flag) = @_;
my $bam_name = basename($bam);
$bam_name =~ s/(\.|\.s.|\.f.s.|\.trim\.gz\.f\.s\.)bam//;
my @runs = ();
my $in_gff = $in;
$in_gff =~ s/\.txt/.gff/;
my $in_tmp = $in . '.tmp1.' . $flag;
my $in_tmp2 = $in . '.tmp2.'. $flag;
my $in_TPM = $in . '.TPM.'. $flag;
my $fc_para = '';
if($bam_name =~ /\_[1-9]$/) {
$fc_para = join(" ", '-M --fraction --donotsort -O -f -T 5 -g gene_id -t exon -p -P -d 40 -D 500 -s 2', '-a', $in_gff, '-o', $in_tmp);
}else {
$fc_para = join(" ", '-M --fraction --donotsort -O -f -T 5 -g gene_id -t exon -s 1', '-a', $in_gff, '-o', $in_tmp);
}
if( not_blank_file($in) ) {
push @runs, "perl $func{'sort2bed.pl'} -t sort2gff -f exon -i $in -o $in_gff";
push @runs, "$func{'featureCounts'} $fc_para $bam > $in\.log 2>&1";
push @runs, "sed \'1,2 d\' $in_tmp > $in_tmp2";
# count TPM
my $mapped = qx($func{'samtools'} idxstats $bam | head -n1 |awk '{print \$3}');
my $m_scale = sprintf"%.4f", 1000000/$mapped;
push @runs, "awk \'{printf(\"\%s\\t\%s\\t\%.4f\\n\", \$1, \$7, \$7 * $m_scale)}\' $in_tmp2 | cut -f2-3 > $in_TPM";
}
return @runs;
}
sub seq2RNAz {
my ($txt, $ref, $rnaz_db, $outdir) = @_;
my $txt_fa = $txt;
$txt_fa =~ s/\.txt$/.fa/;
my $rnaz_log = catfile($outdir, 'rnaz.log');
# my $rnaz_bed = catfile($outdir, 'best_RNAz.bed');
my @runs = ();
push @runs, "perl $func{'sort2bed.pl'} -t sort2fa -g $ref -i $txt -o $txt_fa";
push @runs, "perl $func{'chk_seq2rnaz.pl'} RNAz -d $rnaz_db -o $outdir $txt_fa > $rnaz_log 2>&1 ";
return @runs;
}
sub wrap_output {
my ($info, $pos, $exp, $z) = @_;
my $vf = fetch_id($info);
my $vz = fetch_id($z);
my $ve = fetch_count($exp);
my %hf = %{$vf};
my %hz = %{$vz};
my %he = %{$ve};
my $rpt_out = '';
if( not_blank_file($pos) ) {
open my $fh_pos, "< $pos" or die "$!";
while(<$fh_pos>) {
chomp;
next if(/(^\s*$)|(^\#)/);
my $id = (split /\t/)[0];
my $zscore = (exists $hz{$id})?$hz{$id}:'-';
my $note = (exists $hf{$id})?$hf{$id}:'-';
my $exp = (exists $he{$id})?$he{$id}:'';
$rpt_out .= join("\t", $_, $exp, $zscore, $note) . "\n";
}
close $fh_pos;
return $rpt_out;
}else {
return '';
}
}
sub fetch_id {
my $in = shift(@_);
my %info = ();
if( not_blank_file($in) ) {
open my $fh_in, "< $in" or die "Cannot open $in, $!\n";
while(<$fh_in>) {
chomp;
next if(/(^\s*$)|(^\#)/);
my ($id, $note) = (split /\t/)[0, -1];
if($in =~ /RNAz\.bed$/) {
$id =~ s/^[a-zA-Z0-9]+\_//;
}
$info{$id} = $note;
}
close $fh_in;
}
return \%info;
}
sub fetch_count {
my $in = shift(@_);
my %info = ();
if( not_blank_file($in) ) {
open my $fh_in, "< $in" or die "Cannot open $in, $!\n";
while(<$fh_in>) {
chomp;
next if(/(^\s*$)|(^\#)/);
my @tabs = split /\t/, $_, 13;
$info{$tabs[0]} = $tabs[-1];
}
close $fh_in;
}
return \%info;
}
sub not_blank_file {
my $in = shift(@_);
if( -e $in ) {
open my $fh_in, "< $in" or die "$!";
my $count = 0;
while(<$fh_in>) {
chomp;
next if(/(^\s*$)|(^\#)/); # skip blank or comment lines
$count ++;
}
close $fh_in;
return $count;
}else {
return 0;
}
}
sub check_tools {
# Checking tools existence in the following dir:
# 1. PATH
# 2. ~/work/bin/temp
my %func = %{shift(@_)}; # store id:path
my @missing = ();
for my $f (sort keys %func) {
if( $func{$f} = tool_exist($f) ) {
next;
# $func{$t} = tool_path($t);
}else {
push @missing, $f;
}
}
# find the path of tools
sub tool_exist {
my $tool = shift(@_);
my $my_bin = $ENV{HOME}. '/work/bin/temp';
if( -e catfile($my_bin, $tool) ) {
return catfile($my_bin, $tool);
}elsif( which($tool) ) {
return $tool;
}else {
return 0;
}
}
# report results
if(@missing) {
print STDERR "The following tools are missing \n";
for my $p (sort @missing) {
print STDERR "%-15s : Not found in \$PATH, %-30s\n\n", $p, '~/work/bin/temp/';
}
exit(1);
}
return(\%func);
}
#################################################
# 4. run a demo for all the program in this
# script
#################################################
sub demo_usage {
die("
Usage: parseBAM.pl demo -f ref.fa -g ref.gff -d rnaz.db bam.list
This command will test the configuration of your system, and sampling 0.1% of your
input BAM files to test the program.
Part I. prepare samples
1. sampling 0.1% of each bam files
samtools view -s 0.001 in.bam -b -o sample.bam
Part II. test the program
1. stat bam files
parseBAM.pl stat -o temp bam.list
2. Create bedgraph files
parseBAM.pl view -o temp -f ref.fa bam.list
3. find tags
parseBAM.pl tags -o temp -f ref.fa -g ref.gff -c 5 bam.list
\n");
}
sub rundemo {
my %opts = ();
getopts("f:g:d:", \%opts);
demo_usage() if(@ARGV != 1);
die("[-f] reference not found\n") if(! -e $opts{f});
die("[-g] annotation GFF file not found\n") if(! -e $opts{g});
die("[-d] fa db for RNAz not found\n") if(! -e $opts{d});
my $bam_list = $ARGV[0];
my $temp_dir = 'temp_' . $$.'_' . int(rand(1000000));
my $temp_bam = catdir($temp_dir, 'bamfiles');
make_path($temp_bam) if(! -d $temp_bam);
my $smp_bamlist = sample_bam($temp_bam, $bam_list);
my $temp_out = catdir($temp_dir, 'Results');
make_path($temp_out) if(! -d $temp_out);
my $run_1 = "perl $0 stat -o $temp_out $smp_bamlist > $temp_dir/1.stat.sh";
print show_date . ' 1. run stat' . "\n" . $run_1 . "\n";
system("$run_1");
my $run_2 = "perl $0 view -o $temp_out -f $opts{f} $smp_bamlist > $temp_dir/2.view.sh";
print show_date . ' 2. run view' . "\n" . $run_2 . "\n";
system("$run_2");
my $run_3 = "perl $0 tags -o $temp_out -f $opts{f} -g $opts{g} -c 10 -d $opts{d} $smp_bamlist > $temp_dir/3.tags.sh";
print show_date . ' 3. run tags' . "\n" . $run_3 . "\n";
system("$run_3");
print show_date . ' Finish all program' . "\n";
}
sub sample_bam {
my ($outdir, $bamlist) = @_;
my @sub_bams = ();
for my $bam ( readBAMlist($bamlist) ) {
print show_date() . ' sampling BAM file: ' . $bam . "\n";
my $smp_file = catfile($outdir, 'smp.' . basename($bam));
system "$func{samtools} view -b -o $smp_file -s 0.001 $bam";
system "$func{samtools} index $smp_file";
push @sub_bams, $smp_file;
}
open my $fh_b, "> tmp.bamlist" or die "Cannot write to tmp.bamlist, $!\n";
print $fh_b join("\n", @sub_bams) . "\n";
close $fh_b;
return "tmp.bamlist";
}
__END__
Structure of the output directory:
Output
|-1.stat_bams
| |-bam.stat (output - 1)
|
|-2.view_bedgraph
| |-sample1
| | |- *.fwd.bedgraph, *.rev.bedgraph, *.bam (output - 2)
| |
| |-sample2...
|
|-3.find_tags
| |-sample1
| | |- sample1.tag.txt, *.tag.pos_sRNA.txt ....
| |
| |-sample2...
|
|-4.merge_tags
| |-Lib01
| | |-RNAz_out
| | | |-best_RNAz.bed, best_hits.txt, SeqFA/
| | |-tag.newID.bed, tag.newID.pos_sRNA.count.txt, ...
|
|-5.report
| |-Lib01.report.txt, Lib02.report.txt, ...
change log
1. convert bedgraph / hitogram graph using 'bedtools genomecov'
2. for strand-specific RNA-Seq, split PE BAM into two files: fwd.bam and rev.bam
3. find cov-tags with para: -cut-off: 100,
4. Using 6 MTB Complex genomes for RNAz analysis:
NC_008769: Mycobacterium bovis BCG str. Pasteur 1173P2
NC_015848: Mycobacterium canettii CIPT 140010059
NC_008596: Mycobacterium smegmatis str. MC2 155
NC_009525: Mycobacterium tuberculosis H37Ra
NC_000962: Mycobacterium tuberculosis H37Rv
NC_012943: Mycobacterium tuberculosis KZN 1435
5. set RNAz --cut-off=0.5
6. split these program into 3, for different purpose
stat: calculate total mapped read
view: create bedgraph files for genome browsers (eg: artemis, IGB)
tags: find cov regions in BAM files.
7. RNAz output: only report one region with the highest z-score if the input seq
contain multiple regions with z-score > 0.5.
8. find cov regions (sRNA candidates): candidate should be 60 bp and 100 bp to its
neighbor CDSs (genes).
9. you can input a custom GFF files (eg: only contain CDSs), to find sRNA candidates.
10. wrap count, TPM and RNAz score to one file in report directory.
2014-11-03
v0.1
1. support multiple bam files
2. ONLY support single-chromosome sample
3. merge_tags by bedtools mrege: -s -d -1 -c 4,5,6 -o distinct,distinct,distinct
4. output results in out.dir/03.seqs
2015-02-07
v0.2
1. support single-bam input file, Named: LibN
2. delete the step: copy reference file to current dir. insteat read the original fa/gff files
2015-04-05
v0.3
1. Using 'HTSeq-count' instead of "bedtools multicov" to count reads on each features
2. Splite the BAM file into strand-specific files: fwd.bam and rev.bam
SE:
samtools view -b -F 16 in.bam -o fwd.bam
samtools view -b -f 16 in.bam -o rev.bam
PE:
samtools view -b -f 128 -F 16 in.bam -o fwd1.bam
samtools view -b -f 80 in.bam -o fwd2.bam
samtools index fwd1.bam
samtools index fwd2.bam
samtools merge fwd.bam fwd1.bam fwd2.bam
#
samtools view -b -f 144 in.bam -o rev1.bam
samtools view -b -f 64 -F 16 in.bam -o rev2.bam
samtools index rev1.bam
samtools index rev2.bam
samtools merge rev.bam rev1.bam rev2.bam
3. Perform multiple sequence alignment by: ClustalW2 version 2.1, with default parameter
4. Perform RNAz analysis (RNAz version 2.1) --cut-off=0.5
2015-06-02
v0.4
1. count reads on features by HTSeq-count: (find online note:)
SE: --stranded=yes
PE: --stranded=reverse (dUTP ssRNA-Seq)
bug:
Line188: if input txt is blank, skip the 'paste' step, and copy the _sRNA to _count file. [BUG, not fix ye]
2015-06-15
v0.5
1. replace HTSeq-count by FeatureCounts to count reads on each sRNAs. (much faster)
2. change para for featureCounts: -M --fraction count reads 1/n