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
|
#!/usr/bin/perl
# lav2plt.pl - produce plotfrom lav output */
# $Id: lav2plt.c 625 2011-03-23 17:21:38Z wrp $ */
# $Revision: 625 $ */
################################################################
# copyright (c) 2012, 2014 by William R. Pearson and The Rector &
# Visitors of the University of Virginia */
################################################################
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under this License is distributed on an "AS
# IS" BASIS, WITHOUT WRRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language
# governing permissions and limitations under the License.
################################################################
use warnings;
use strict;
use Getopt::Long;
use Pod::Usage;
use FindBin;
use lib "$FindBin::Bin/";
use vars qw($pminx $pmaxx $pminy $pmaxy $lvstr $max_x $max_y
$fxscal $fyscal $fxoff $fyoff
@linarr @elinval @blinval @ilinval
@line_colors @block_colors
$annot_color %annot_names %color_names);
@line_colors=qw(black blue brown green lightgreen);
@block_colors = qw( slategrey lightgreen lightblue pink cyan tan gold plum mediumplum );
my ($have_bits, $have_zdb, $zdb_size,$lav_dev, $shelp, $help) = (0,0,0,'svg',0,0);
my ($x_upd_script, $y_upd_script) = ("","");
my ($x_annot_arr_r, $y_annot_arr_r) = (0,0);
$annot_color = 1;
%annot_names = ();
GetOptions("B"=>\$have_bits,
"Z=i"=>\$zdb_size,
"xA=s"=>\$x_upd_script,
"yA=s"=> \$y_upd_script,
"dev=s" => \$lav_dev,
"h|?" => \$shelp,
"help" => \$help,
);
pod2usage(1) if $shelp;
pod2usage(exitstatus => 0, verbose => 2) if $help;
#require "./lav_defs.pl";
# $max_x, $max_y define the maximum plotting area
# the actual bounding box/view area will be larger if annotation comments are available
($max_x,$max_y)=(540,540);
@elinval=(1e-4,1e-2,1.0,100.0);
@blinval=(40.0,30.0,20.0,10.0);
@ilinval=(200,100,50,25);
require "color_defs.pl";
if ($lav_dev =~ m/ps/) {require "lavplt_ps.pl";}
else {require "lavplt_svg.pl";}
my ($g_n0, $g_n1);
my $pgm_desc;
my ($s_name0, $s_name1);
my ($s_desc0, $s_desc1, $ss_desc0, $ss_desc1);
my ($p0_beg, $p1_beg, $p0_end, $p1_end);
my $open_plt = 0;
if ($zdb_size) {
$have_zdb = 1;
}
else {
$zdb_size = 1;
}
while (my $line = <>) {
chomp $line;
next unless ($line);
next if ($line =~ m/^#/);
if ($line =~ m/^d/) {$pgm_desc = get_str();}
elsif ($line =~ m/^h/) {
($s_desc0, $s_desc1) = get_str2();
$s_desc0 =~ s/^gi\|\d+\|//;
$s_desc1 =~ s/^gi\|\d+\|//;
$s_desc0 = substr($s_desc0,0,50);
$s_desc1 = substr($s_desc1,0,50);
$ss_desc0 = ($s_desc0 =~ m/^(\S+)\s*/);
$ss_desc1 = ($s_desc1 =~ m/^(\S+)\s*/);
}
elsif ($line =~ m/^s/) {
($s_name0, $p0_beg, $p0_end,$s_name1, $p1_beg, $p1_end) = get_seq_info();
$g_n0 = $p0_end - $p0_beg + 1;
$g_n1 = $p1_end - $p1_beg + 1;
}
elsif ($line =~ m/^a/) {
unless ($open_plt) {
if ($y_upd_script) {$y_annot_arr_r = get_annot($s_desc1, $y_upd_script);}
if ($x_upd_script) {$x_annot_arr_r = get_annot($s_desc0, $x_upd_script);}
openplt($g_n0, $g_n1, $p0_beg, $p1_beg, $s_desc0, $s_desc1, $x_annot_arr_r, $y_annot_arr_r,$have_zdb, $have_bits);
if (($g_n0 == $g_n1) && ($p0_beg == $p1_beg) && ($p0_end == $p1_end) && $ss_desc0 eq $ss_desc1) {
drawdiag($g_n0, $g_n1);
}
$open_plt = 1;
}
do_alignment($p0_beg, $p1_beg);
}
}
unless ($open_plt) {
if ($y_upd_script) {$y_annot_arr_r = get_annot($y_upd_script);}
if ($x_upd_script) {$x_annot_arr_r = get_annot($x_upd_script);}
openplt($g_n0, $g_n1, $p0_beg, $p1_beg, $s_desc0, $s_desc1, $x_annot_arr_r, $y_annot_arr_r,$have_zdb, $have_bits);
if (($g_n0 == $g_n1) && ($p0_beg == $p1_beg) && ($p0_end == $p1_end) &&
$ss_desc0 eq $ss_desc1) {
drawdiag($g_n0, $g_n1);
}
$open_plt = 1;
}
closeplt();
exit(0);
# get a quote enclosed string
# d {
# "../bin/lalign36 -m "F11 mchu.lav" ../seq/mchu.aa ../seq/mchu.aa"
# }
# void get_str(FILE *file, char *str, size_t len) {
sub get_str {
my $str = "";
while (my $line = <>) {
chomp $line;
next unless $line;
next if ($line =~ m/^#/);
last if ($line =~ m/}/);
$str .= $line
}
$str =~ s/^\s+"//;
$str =~ s/"\s*$//;
return $str;
}
# get two quote enclosed strings
# h {
# "MCHU - Calmodulin - Human, rabbit, bovine, rat, a - 148 aa"
# "MCHU - Calmodulin - Human, rabbit, bovine, rat, and ch"
# }
#
#void get_str2(FILE *file, char *str0, size_t len0, char *str1, size_t len1)
sub get_str2 {
my @str = ();
my ($str0,$str1) = ("","");
while (my $line = <>) {
chomp $line;
next unless $line;
next if ($line =~ m/^#/);
last if ($line =~ m/}/);
push @str, $line;
}
do {
$str0 .= shift @str;
} while (@str && $str0 !~ m/"\s*$/);
do {
$str1 .= shift @str;
} while (@str && $str1 !~ m/"\s*$/);
$str0 =~ s/^\s+"//;
$str0 =~ s/"\s*$//;
$str1 =~ s/^\s+"//;
$str1 =~ s/"\s*$//;
return ($str0, $str1);
}
#void get_seq_info(FILE *file,
# char *str0, size_t len0, int *n0_begin, int *n0_end,
# char *str1, size_t len1, int *n1_begin, int *n1_end)
sub get_seq_info {
my @lines = ();
my ($str0, $str1) = ("","");
my ($n0_beg, $n0_end, $n1_beg, $n1_end, $blank);
while (my $line = <>) {
chomp($line);
next if ($line =~ m/^#/);
last if ($line =~ m/}/);
push @lines, $line;
}
($blank, $str0, $n0_beg, $n0_end) = split(/\s+/,$lines[0]);
($blank, $str1, $n1_beg, $n1_end) = split(/\s+/,$lines[1]);
$str0 =~ s/^\s+"//;
$str0 =~ s/"\s*$//;
$str1 =~ s/^\s+"//;
$str1 =~ s/"\s*$//;
return ($str0, $n0_beg, $n0_end, $str1, $n1_beg, $n1_end);
}
# void do_alignment(FILE *file, int p0_beg, int p1_beg)
sub do_alignment {
my ($score, $s0_beg, $s0_end, $s1_beg, $s1_end, $percent, $bits);
my $have_line = 0;
while (my $line = <>) {
chomp $line;
next unless $line;
next if ($line =~ m/^#/);
last if ($line =~ m/}/);
my @fields = split(/\s+/,$line);
# loose first field if blank
unless ($fields[0]) {shift @fields;}
if ($fields[0] eq 's') {($score, $bits) = @fields[1,2];}
elsif ($fields[0] eq 'b') {($s0_beg, $s1_beg) = @fields[1,2];}
elsif ($fields[0] eq 'e') {($s0_end, $s1_end) = @fields[1,2];}
elsif ($fields[0] eq 'l') {
($s0_beg, $s1_beg, $s0_end, $s1_end,$percent) = @fields[1..5];
if ($have_line) {
sxy_draw($s0_beg-$p0_beg+1, $s1_beg-$p1_beg+1);
sxy_draw($s0_end-$p0_beg+1, $s1_end-$p1_beg+1);
}
else {
opnline($score, $bits);
sxy_move($s0_beg - $p0_beg + 1, $s1_beg - $p1_beg + 1);
sxy_draw($s0_end - $p0_beg + 1, $s1_end - $p1_beg + 1);
$have_line = 1;
}
}
}
clsline();
}
# get annot does 2 things:
# (1) read in the annotations
# (2) make a hash of annotation colors, changing the color with each addition
#
sub get_annot {
my ($acc, $script) = @_;
my $FIN;
if ($script !~ /^!/) {
if (!open($FIN,$script)) {
warn "cannot open annotation file: $script\n";
return 0;
}
}
else { # run the script on the accession
$script =~ s/!//;
$acc =~ m/^(\S+)/;
$acc = $1;
if (!open($FIN, "$script \'$acc\' |")) {
warn "cannot run annotation script: $script $acc\n";
return 0;
}
}
my @annots = ();
my $header = <$FIN>;
while (my $line = <$FIN>) {
last if ($line =~ m/^>/);
chomp $line;
my %fields = ();
# @fields{qw(beg type end descr)} = split(/\t/,$line);
$line =~ s/^\s+//;
my @line_fields = split(/\s+/,$line);
if (scalar(@line_fields) == 3) {
@fields{qw(beg end descr)} = @line_fields;
}
else {
@fields{qw(beg dash end descr)} = @line_fields;
}
# made short description
$fields{sdescr} = substr($fields{descr},0,12);
($fields{sname}) = ($fields{sdescr} =~ m/^([^\s~]+)/);
($fields{sdescr}) = ($fields{sdescr} =~ m/^([^\s~]+)/);
unless ($annot_names{$fields{sname}}) {
if ($fields{descr} =~ m/~(\d+)/) {
$annot_names{$fields{sname}} = $1;
}
else {
$annot_names{$fields{sname}} = $annot_color++;
}
}
$fields{descr} =~ s/~\d+$//;
push @annots, \%fields;
}
close($FIN);
return \@annots;
}
# produce e_val from bit score */
#double bit_to_E (double bit)
sub bit_to_E {
my $bit = shift @_;
my $M_LN2=0.69314718055994530942;
my ($p_val);
$p_val = $g_n0 * $g_n1 / exp($bit * $M_LN2);
if ($p_val > 0.01) {$p_val = 1.0 - exp(-$p_val);}
return $zdb_size * $p_val;
}
=pod
=head1 NAME
lav2plt.pl
=head1 SYNOPSIS
lav2plt.pl -h -help -B -Z=10000 --dev svg|ps --xA \!x_annot_script.pl --yA \!y_annot_script.pl output.lav
=head1 OPTIONS
-h short help
--help include description
-B have bit scores
-Z=# simulated database size
--dev svg|ps graphical output format
--xA/--yA domain annotation file/script (!script)
=head1 DESCRIPTION
C<lav2plt.pl> reads a local alignment lav file, produced by 'lalign36
-m 11' and produces an alignment plot (on stdout) in svg (--dev svg, default)
or postscript (--dev ps) format.
=head1 AUTHOR
William R. Pearson, wrp@virginia.edu
=cut
|