]> git.donarmstrong.com Git - samtools.git/blob - misc/soap2sam.pl
fixed a bug in generating tag AM
[samtools.git] / misc / soap2sam.pl
1 #!/usr/bin/perl -w
2
3 # Contact: lh3
4 # Version: 0.1.0
5
6 use strict;
7 use warnings;
8 use Getopt::Std;
9
10 &soap2sam;
11 exit;
12
13 sub mating {
14   my ($s1, $s2) = @_;
15   my $isize = 0;
16   if ($s1->[2] ne '*' && $s1->[2] eq $s2->[2]) { # then calculate $isize
17         my $x1 = ($s1->[1] & 0x10)? $s1->[3] + length($s1->[9]) : $s1->[3];
18         my $x2 = ($s2->[1] & 0x10)? $s2->[3] + length($s2->[9]) : $s2->[3];
19         $isize = $x2 - $x1;
20   }
21   # update mate coordinate
22   if ($s2->[2] ne '*') {
23         @$s1[6..8] = (($s2->[2] eq $s1->[2])? "=" : $s2->[2], $s2->[3], $isize);
24         $s1->[1] |= 0x20 if ($s2->[1] & 0x10);
25   } else {
26         $s1->[1] |= 0x8;
27   }
28   if ($s1->[2] ne '*') {
29         @$s2[6..8] = (($s1->[2] eq $s2->[2])? "=" : $s1->[2], $s1->[3], -$isize);
30         $s2->[1] |= 0x20 if ($s1->[1] & 0x10);
31   } else {
32         $s2->[1] |= 0x8;
33   }
34 }
35
36 sub soap2sam {
37   my %opts = ();
38   getopts("p", \%opts);
39   die("Usage: soap2sam.pl [-p] <aln.soap>\n") if (@ARGV == 0);
40   my $is_paired = defined($opts{p});
41   # core loop
42   my @s1 = ();
43   my @s2 = ();
44   my ($s_last, $s_curr) = (\@s1, \@s2);
45   while (<>) {
46         &soap2sam_aux($_, $s_curr, $is_paired);
47         if (@$s_last != 0 && $s_last->[0] eq $s_curr->[0]) {
48           &mating($s_last, $s_curr);
49           print join("\t", @$s_last), "\n";
50           print join("\t", @$s_curr), "\n";
51           @$s_last = (); @$s_curr = ();
52         } else {
53           print join("\t", @$s_last), "\n" if (@$s_last != 0);
54           my $s = $s_last; $s_last = $s_curr; $s_curr = $s;
55         }
56   }
57   print join("\t", @$s_last), "\n" if (@$s_last != 0);
58 }
59
60 sub soap2sam_aux {
61   my ($line, $s, $is_paired) = @_;
62   chomp($line);
63   my @t = split("\t", $line);
64   @$s = ();
65   # read name
66   $s->[0] = $t[0];
67   $s->[0] =~ s/\/[12]$//g;
68   # initial flag (will be updated later)
69   $s->[1] = 0;
70   $s->[1] |= 1 | 1<<($t[4] eq 'a'? 6 : 7);
71   $s->[1] |= 2 if ($is_paired);
72   # read & quality
73   $s->[9] = $t[1]; $s->[10] = $t[2];
74   # cigar
75   $s->[5] = length($s->[9]) . "M";
76   # coor
77   $s->[2] = $t[7]; $s->[3] = $t[8];
78   $s->[1] |= 0x10 if ($t[6] eq '-');
79   # mapQ
80   $s->[4] = $t[3] == 1? 30 : 0;
81   # mate coordinate
82   $s->[6] = '*'; $s->[7] = $s->[8] = 0;
83   # aux
84   push(@$s, "NM:i:$t[9]");
85   my $md = '';
86   if ($t[9]) {
87         my @x;
88         for (10 .. $#t) {
89           push(@x, sprintf("%.3d,$1", $2)) if ($t[$_] =~ /^([ACGT])->(\d+)/i);
90         }
91         @x = sort(@x);
92         my $a = 0;
93         for (@x) {
94           my ($y, $z) = split(",");
95           $md .= (int($y)-$a) . $z;
96           $a += $y - $a + 1;
97         }
98         $md .= length($t[1]) - $a;
99   } else {
100         $md = length($t[1]);
101   }
102   push(@$s, "MD:Z:$md");
103 }