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
|
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib ("$FindBin::RealBin/../PerlLib");
use SAM_reader;
use SAM_entry;
my $usage = "\n\nusage: name_sorted_paired_reads.sam [debug]\n\n";
my $sam_file = $ARGV[0] or die $usage;
my $DEBUG = $ARGV[1] || 0;
if ($sam_file =~ /coord/i) {
die "Your filename contains the term 'coord' which makes me nervous. This needs to be a name-sorted SAM file. Please rename the file or use the correct version here\n.";
}
my $DEBUG_OFH;
if ($DEBUG) {
open ($DEBUG_OFH, ">_debug.nameSorted_frag_classes") or die $!;
}
=notes
Gathers all reads having the same core read name (both left and right reads of PE frags).
Separates the left and right reads into corresponding lists.
Examines pairwise comparisons between left and right reads, check for same scaffold and that the right reads mate aligned coordinate matches up with that of the left reads aligned coordinate.
If not properly paired:
have both left and right reads mapped anywhere: improper pair
Otherwise, left-only or right-only counts.
=cut
main: {
my $prev_read_name = "";
my $prev_scaff_name = "";
my @reads;
my %counts;
my $line_counter = 0;
my $sam_reader = new SAM_reader($sam_file);
while ($sam_reader->has_next()) {
$line_counter++;
my $read = $sam_reader->get_next();
if ($read->is_query_unmapped()) { next; }
my $scaff_name = $read->get_scaffold_name();
my $core_read_name = $read->get_core_read_name();
if ($core_read_name ne $prev_read_name) {
if (@reads) {
&process_pairs(\@reads, \%counts);
@reads = ();
}
}
push (@reads, $read);
$prev_read_name = $core_read_name;
$prev_scaff_name = $scaff_name;
if ($line_counter % 100000 == 0) {
my $count_print = $line_counter;
$count_print=~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g;
print STDERR "\r[$count_print] lines read ";
}
}
print STDERR "\n\n";
&process_pairs(\@reads, \%counts) if @reads;
my $sum_reads = 0;
foreach my $count (values %counts) {
$sum_reads += $count;
}
print "\n#read_type\tcount\tpct\n";
foreach my $count_type (reverse sort {$counts{$a}<=>$counts{$b}} keys %counts) {
my $count = $counts{$count_type};
print "$count_type\t$count\t" . sprintf("%.2f", $count/$sum_reads*100) . "\n";
}
print "\n";
print "Total aligned rnaseq fragments: $sum_reads\n\n";
close $DEBUG_OFH if $DEBUG;
exit(0);
}
####
sub process_pairs {
my ($reads_aref, $counts_href) = @_;
my @reads = @$reads_aref;
my @left_reads;
my @right_reads;
foreach my $read (@reads) {
if ($read->is_first_in_pair()) {
push (@left_reads, $read);
}
elsif ($read->is_second_in_pair()) {
push (@right_reads, $read);
}
}
my $got_left_read = (@left_reads) ? 1 : 0;
my $got_right_read = (@right_reads) ? 1: 0;
## check to see if we have proper pairs:
my $got_proper_pair = 0;
pair_search:
foreach my $left_read (@left_reads) {
my $aligned_pos = $left_read->get_aligned_position();
foreach my $right_read (@right_reads) {
if ($left_read->get_scaffold_name() eq $right_read->get_scaffold_name()
&&
$right_read->get_mate_scaffold_position() == $aligned_pos) {
$got_proper_pair = 1;
last pair_search;
}
}
}
my $class = "";
if ($got_proper_pair) {
$counts_href->{proper_pairs}++;
$class = "PP";
}
elsif ($got_left_read && $got_right_read) {
$counts_href->{improper_pairs}++;
$class = "IP";
}
elsif ($got_left_read) {
$counts_href->{left_only}++;
$class = "L";
}
elsif ($got_right_read) {
$counts_href->{right_only}++;
$class = "R";
}
else {
$counts_href->{single}++;
$class = "S";
}
if ($DEBUG) {
my $core_read_name = $reads[0]->get_core_read_name();
print $DEBUG_OFH join("\t", $core_read_name, $class) . "\n";
}
return;
}
|