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 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
|
package Bio::Graphics::Glyph::decorated_transcript;
use strict;
use warnings;
use Bio::Graphics::Panel;
use List::Util qw[min max];
use constant DECORATION_TAG_NAME => 'protein_decorations';
use constant DEBUG => 0;
my @color_names = Bio::Graphics::Panel::color_names;
use base
qw(Bio::Graphics::Glyph::processed_transcript Bio::Graphics::Glyph::segments);
sub my_descripton {
return <<END;
This glyph extends the functionality of the Bio::Graphics::Glyph::processed_transcript glyph
and allows one to draw protein decorations (e.g., signal peptides, transmembrane domains, protein domains)
on top of gene models. Currently, the glyph can draw decorations in form of colored or outlined boxes
inside or around CDS segments. Protein decorations are specified at the 'mRNA' transcript level
in protein coordinates. Protein coordinates are automatically mapped to nucleotide coordinates by the glyph.
Decorations are allowed to span exon-exon junctions, in which case decorations are split between exons.
By default, the glyph automatically assigns different colors to different types of protein decorations, whereas
decorations of the same type are always assigned the same color.
Protein decorations are provided either with mRNA features inside GFF files (see example below) or
dynamically via callback function using the B<additional_decorations> option (see glyph options).
The following line is an example of an mRNA feature in a GFF file that contains two protein decorations,
one signal peptide predicted by SignalP and one transmembrane domain predicted by TMHMM:
chr1 my_source mRNA 74796 75599 . + . ID=rna_gene-1;protein_decorations=SignalP40:SP:1:23:0:my_comment,TMHMM:TM:187:209:0
Each protein decoration consists of six fields separated by a colon:
1) Type. For example used to specify decoration source (e.g. 'SignalP40')
2) Name. Decoration name. Used as decoration label by default (e.g. 'SP' for signal peptide)
3) Start. Start coordinate at the protein-level (1-based coordinate)
4) End. End coordinate at the protein-level
5) Score. Optional. Score associated with a decoration (e.g. Pfam E-value). This score can be used
to dynamically filter or color decorations via callbacks (see glyph options).
6) Description. Optional. User-defined description of decoration. The glyph ignores this description,
but it will be made available to callback functions for inspection. Special characters
like ':' or ',' that might interfere with the GFF tag parser should be avoided.
If callback functions are used as glyph parameters (see below), the callback is called for each
decoration separately. That is, the callback can be called multiple times for the same CDS feature,
but each time with a different decoration. The currently drawn (active) decoration is made available
to the callback via the glyph method 'active_decoration'. The active decoration is returned in form
of a Bio::Graphics::Feature object, with decoration data fields mapped to corresponding feature
attributes in the following way:
type --> \$glyph->active_decoration->type
name --> \$glyph->active_decoration->name
nucleotide start coordinate --> \$glyph->active_decoration->start
nucleotide end coordinate --> \$glyph->active_decoration->end
protein start coordinate --> \$glyph->active_decoration->get_tag_values('p_start')
protein end coordinate --> \$glyph->active_decoration->get_tag_values('p_end')
score --> \$glyph->active_decoration->score
description --> \$glyph->active_decoration->description
In addition, the glyph passed to the callback allows access to the parent glyph and
parent feature if required (use \$glyph->parent or \$glyph->parent->feature).
END
}
sub my_options {
return {
decoration_visible => [
'boolean',
'false',
'Specifies whether decorations should be visible or not. For selective display of individual',
'decorations, specify a callback function and return 1 or 0 after inspecting the active',
'decoration of the glyph. '],
decoration_color => [
'color',
undef,
'Decoration background color. If no color is specified, colors are assigned automatically',
'by decoration type and name, whereas decorations of identical type and name are assigned',
'the same color. A special color \'transparent\' can be used here in combination with',
'the option \'decoration_border\' to draw decorations as outlines.'],
decoration_border => [
['none', 'solid', 'dashed'],
'none',
'Decoration border style. By default, decorations are drawn without border (\'none\' or',
'0). Other valid options here include \'solid\' or \'dashed\'.'],
decoration_border_color => [
'color',
'black',
'Color of decoration boder.'],
decoration_label => [
'string',
undef,
'Decoration label. If not specified, the second data field of the decoration is used',
'as label. Set this option to 0 to get unlabeled decorations. If the label text',
'extends beyond the size of the decorated segment, the label will be clipped. Clipping',
'does not occur for SVG output.'],
decoration_label_position => [
['inside', 'above', 'below'],
undef,
'Position of decoration label. Labels can be drawn \'inside\' decorations (default)',
'or \'above\' and \'below\' decorations.'],
decoration_label_color => [
'color',
'undef',
'Decoration label color. If not specified, this color is complementary to',
'decoration_color (e.g., yellow text on blue background, white on black, etc.). If the',
'decoration background color is transparent and no decoration label color is specified,',
'the foreground color of the underlying transcript glyph is used as default.'],
additional_decorations => [
'string',
undef,
'Additional decorations to those specified in the GFF file. Expected is a string',
'in the same format as described above for GFF files. This parameter is intended',
'to be used as callback function, which inspects the currently processed transcript',
'feature (first parameter to callback) and returns additional protein decorations',
'that should be drawn.'],
decoration_height => [
'integer',
undef,
'Decoration height. Unless specified otherwise, the height of the decoration is the',
'height of the underlying transcript glyph minus 2, such that the decoration is drawn',
'within transcript boundaries.'],
decoration_position => [
['inside'],
'inside',
'Currently, decorations can only be drawn inside CDS segments.'],
flip_minus => [
'boolean',
0,
'If set to 1, features on the negative strand will be drawn flipped.',
'This is not particularly useful in GBrowse, but becomes handy if multiple features',
'should be drawn within the same panel, left-aligned, and on top of each other,',
'for example to allow easy gene structure comparisons.'],
}
}
sub new {
my ( $class, @args ) = @_;
my %param = @args;
warn "new(): " . join( ",", @args ) . "\n" if (DEBUG == 2);
my $feature = $param{'-feature'};
my $factory = $param{'-factory'};
my $flip_minus = $factory->get_option('flip_minus');
if ( $flip_minus and $feature->strand < 1 ) {
for ( my $i = 0 ; $i < @args ; $i++ ) {
$args[ $i + 1 ] = 1 if ( $args[$i] eq '-flip' );
}
}
my $self = $class->Bio::Graphics::Glyph::processed_transcript::new(@args);
$self->{'parent'} = undef;
$self->{'additional_decorations'} = undef;
$self->{'active_decoration'} = undef;
$self->{'add_pad_bottom'} = undef;
# give sub-glyphs access to parent glyph's decorations
if ($self->decorations_visible)
{
foreach my $sub_glyph ( $self->parts ) {
$sub_glyph->{'parent'} = $self;
}
}
bless( $self, $class );
return $self;
}
sub finished {
my $self = shift;
warn "finished(): ".$self->feature->primary_tag." ".$self->feature."\n" if (DEBUG == 2);
foreach my $sub_glyph ( $self->parts ) {
$sub_glyph->{'parent'} = undef;
}
$self->Bio::Graphics::Glyph::processed_transcript::finished(@_);
}
sub parent {
my $self = shift;
return $self->{'parent'};
}
sub decorations {
my $self = shift;
my $feature = $self->feature;
return $self->{'parent'}->decorations(@_)
if ($self->{'parent'} and $feature->primary_tag ne "mRNA");
return $feature->get_tag_values(DECORATION_TAG_NAME);
}
# allows one to retrieve additional decorations via callback
sub additional_decorations {
my $self = shift;
my $feature = $self->feature;
return $self->{'parent'}->additional_decorations(@_)
if ($self->{'parent'} and $feature->primary_tag ne "mRNA");
return $self->{'additional_decorations'}
if (defined $self->{'additional_decorations'});
my @additional_decorations;
my $additional_decorations_str = $self->option('additional_decorations');
if ($additional_decorations_str)
{
push(@additional_decorations, split(",", $additional_decorations_str));
}
$self->{'additional_decorations'} = \@additional_decorations;
return \@additional_decorations;
}
sub all_decorations {
my $self = shift;
my @all_decorations;
# no decorations at gene level
return \@all_decorations
if ($self->feature->primary_tag eq "gene");
# forward request to mRNA parent glyph;
# allows CDS child glyphs to retrieve decoration information from mRNA
return $self->{'parent'}->all_decorations(@_)
if ($self->{'parent'} and $self->feature->primary_tag ne "mRNA");
# decoration data specified as feature tag
@all_decorations = $self->decorations;
# add additional decorations provided via callback
push(@all_decorations, @{$self->additional_decorations});
return \@all_decorations;
}
# returns stack offset of decoration (only used if decoration is drawn stacked)
sub stack_offset_bottom {
my $self = shift;
return $self->{'parent'}->stack_offset_bottom(@_)
if ($self->{'parent'} and $self->feature->primary_tag ne "mRNA");
my $decoration = shift;
return $self->{'stack_offset_bottom'}{$decoration}
}
sub active_decoration {
my $self = shift;
return $self->{'active_decoration'};
}
# get all decorations, including mapped nucleotide coordinates
sub mapped_decorations {
my $self = shift;
my $feature = $self->feature;
return $self->{'parent'}->mapped_decorations(@_)
if ($self->{'parent'} and $feature->primary_tag ne "mRNA");
$self->_map_decorations()
if (!defined $self->{'mapped_decorations'});
return $self->{'mapped_decorations'};
}
# get all mapped decorations, as sorted by user call-back (if provided)
# by default, decorations are sorted by length, causing shorter decorations
# to be drawn on top of longer decorations
# TODO: document this new feature
sub sorted_decorations {
my $self = shift;
# forward request to mRNA parent glyph;
# allows CDS child glyphs to retrieve decoration information from mRNA
return $self->{'parent'}->sorted_decorations(@_)
if ($self->{'parent'} and $self->feature->primary_tag ne "mRNA");
# cache for faster access
return $self->{'sorted_decorations'}
if (defined $self->{'sorted_decorations'});
# get sorted decorations from callback
my $sorted_decorations = $self->option('sorted_decorations');
# if no callback or bad return value, sort by length by default (causes longer
# decorations to be drawn first)
if (!$sorted_decorations or ref($sorted_decorations) ne 'ARRAY')
{
my @sorted = reverse sort { $a->length <=> $b->length } (@{$self->mapped_decorations});
$sorted_decorations = \@sorted;
if (DEBUG)
{
print STDERR "sorted decorations: ";
foreach my $sd (@$sorted_decorations) { print STDERR $sd->name."(".$sd->length.") "; }
print STDERR "\n";
}
}
$self->{'sorted_decorations'} = $sorted_decorations;
return $sorted_decorations;
}
sub _map_decorations {
my $self = shift;
my $feature = $self->feature;
$self->_map_coordinates();
my @mapped_decorations;
foreach my $h ( @{$self->all_decorations} ) {
my ( $type, $name, $p_start, $p_end, $score, $desc ) = split( ":", $h );
if (!defined $p_end)
{
warn "_map_decorations(): WARNING: invalid decoration data for feature $feature: '$h'\n";
next;
}
my $nt_start = $self->_map_codon_start($p_start);
if (!$nt_start)
{
warn "DECORATION=$h\n";
warn "_map_decorations(): WARNING: could not map decoration start coordinate on feature $feature(".$feature->primary_tag.")\n";
next;
}
my $nt_end = $self->_map_codon_end($p_end);
if (!$nt_end)
{
warn "DECORATION=$h\n";
warn "_map_decorations(): WARNING: could not map decoration end coordinate on feature $feature(".$feature->primary_tag.")\n";
next;
}
( $nt_start, $nt_end ) = ( $nt_end, $nt_start )
if ( $nt_start > $nt_end );
my $f = Bio::Graphics::Feature->new
(
-type => $type,
-name => $name,
-start => $nt_start,
-end => $nt_end,
-score => $score,
-desc => $desc,
-seq_id => $feature->seq_id,
-strand => $feature->strand,
-attributes => { # remember protein coordinates for callbacks
'p_start' => $p_start,
'p_end' => $p_end
}
);
# my $mapped_decoration = "$h:$nt_start:$nt_end";
push( @mapped_decorations, $f );
# init stack offset for stacked decorations
if ($self->decoration_position($f) eq 'stacked_bottom')
{
if (!defined $self->{'stack_offset_bottom'}{$f})
{
$self->{'cur_stack_offset_bottom'} = 2
if (!defined $self->{'cur_stack_offset_bottom'});
$self->{'stack_offset_bottom'}{$f} = $self->{'cur_stack_offset_bottom'};
$self->{'cur_stack_offset_bottom'} += $self->decoration_height($f);
warn "$self: stack offset ".$f->name."($f): ".$self->{'stack_offset_bottom'}{$f}."\n"
if (DEBUG);
}
}
warn "DECORATION=$h --> $nt_start:$nt_end\n" if (DEBUG);
}
$self->{'mapped_decorations'} = \@mapped_decorations;
}
sub _map_codon_start {
my $self = shift;
my $protein_coordinate = shift;
$self->throw('protein coordinate not specified: ')
if (!$protein_coordinate and DEBUG);
return $self->{'p2n'}->{$protein_coordinate}->{'codon_start'};
}
sub _map_codon_end {
my $self = shift;
my $protein_coordinate = shift;
$self->throw('protein coordinate not specified')
if (!$protein_coordinate and DEBUG);
return $self->{'p2n'}->{$protein_coordinate}->{'codon_end'};
}
# map protein to nucleotide coordinate
sub _map_coordinates {
my $self = shift;
# sort all CDS features by coordinates
# NOTE: filtering for CDS features by passing feature type to get_SeqFeatures()
# does not work for some reason, probably when no feature store attached
my @cds =
grep { $_->primary_tag eq 'CDS' } $self->feature->get_SeqFeatures();
if ( $self->feature->strand > 0 ) {
my ( $ppos, $residue ) = ( 1, 0 );
my @sorted_cds = sort { $a->start <=> $b->start } (@cds);
foreach my $c (@sorted_cds) {
$self->{'p2n'}{ $ppos - 1 }{'codon_end'} = $c->start + $residue - 1
if ($residue);
for (
my $ntpos = $c->start + $residue ;
$ntpos <= $c->end ;
$ntpos += 3
)
{
$self->{'p2n'}{$ppos}{'codon_start'} = $ntpos;
$self->{'p2n'}{$ppos}{'codon_end'} = $ntpos + 2;
$ppos++;
$residue = $ntpos + 2 - $c->end;
}
}
}
else {
my ( $ppos, $residue ) = ( 1, 0 );
my @sorted_cds = reverse sort { $a->start <=> $b->start } (@cds);
foreach my $c (@sorted_cds) {
$self->{'p2n'}{ $ppos - 1 }{'codon_end'} = $c->end - $residue + 1
if ($residue);
for (
my $ntpos = $c->end - $residue ;
$ntpos >= $c->start ;
$ntpos -= 3
)
{
$self->{'p2n'}{$ppos}{'codon_start'} = $ntpos;
$self->{'p2n'}{$ppos}{'codon_end'} = $ntpos - 2;
$ppos++;
$residue = $c->start - ( $ntpos - 2 );
}
}
}
}
sub decoration_top {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return $self->top;
}
my $decoration_height = $self->decoration_height($decoration);
my $decoration_position = $self->decoration_position($decoration);
if ($decoration_position eq 'stacked_bottom')
{
$self->throw("$self: stack offset unknown for decoration ".$decoration->name."($decoration)")
if (!defined $self->stack_offset_bottom($decoration) and DEBUG);
return $self->bottom + $self->stack_offset_bottom($decoration);
}
else
{
$self->throw("invalid decoration_position: $decoration_position")
if (($decoration_position ne 'inside') and DEBUG);
return int(($self->bottom-$self->pad_bottom+$self->top+$self->pad_top)/2 - $decoration_height/2 + 0.5);
}
}
sub decoration_bottom {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return $self->bottom;
}
return $self->decoration_top($decoration) + $self->decoration_height($decoration) - 1;
}
sub _calc_add_padding
{
my $self = shift;
my $height = $self->height;
my ($add_pad_bottom, $add_pad_top) = (0, 0);
foreach my $decoration (@{$self->mapped_decorations})
{
my $h_height = $self->decoration_height($decoration);
my ($label_pad_top, $label_pad_bottom) = (0, 0);
if ($self->decoration_label($decoration))
{
$label_pad_top = $self->labelfont->height
if ($self->decoration_label_position($decoration) eq "above");
$label_pad_bottom = $self->labelfont->height
if ($self->decoration_label_position($decoration) eq "below");
}
if (($h_height - $height)/2 + $label_pad_top > $add_pad_top)
{
$add_pad_top = ($h_height - $height)/2 + $label_pad_top;
}
if (($h_height - $height)/2 + $label_pad_bottom > $add_pad_bottom)
{
$add_pad_bottom = ($h_height - $height)/2 + $label_pad_bottom;
}
if ($self->{'stack_offset_bottom'}{$decoration} and $self->{'stack_offset_bottom'}{$decoration}+$h_height > $add_pad_bottom)
{
$add_pad_bottom = $self->{'stack_offset_bottom'}{$decoration}+$h_height;
}
}
$self->{'add_pad_bottom'} = $add_pad_bottom;
$self->{'add_pad_top'} = $add_pad_top;
}
# add extra padding if decoration exceeds transcript boundaries and if labeled outside
sub pad_bottom {
my $self = shift;
my $bottom = $self->option('pad_bottom');
return $bottom if defined $bottom;
$self->_calc_add_padding()
if (!defined $self->{'add_pad_bottom'});
my $pad = $self->Bio::Graphics::Glyph::processed_transcript::pad_bottom;
return $pad if ($self->{'add_pad_bottom'} < 0);
return $pad + $self->{'add_pad_bottom'};
}
sub pad_top {
my $self = shift;
my $top = $self->option('pad_top');
return $top if defined $top;
$self->_calc_add_padding()
if (!defined $self->{'add_pad_top'});
my $pad = $self->Bio::Graphics::Glyph::processed_transcript::pad_top;
return $pad if ($self->{'add_pad_top'} < 0);
return $pad + $self->{'add_pad_top'};
}
sub decoration_height {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return $self->height;
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_height = $self->option('decoration_height');
$decoration_height = $self->height-2
if ( !$decoration_height );
return $decoration_height;
}
sub decoration_position {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "inside";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_position = $self->option('decoration_position');
$decoration_position = 'inside'
if ( !$decoration_position );
if ($decoration_position ne 'inside' and $decoration_position ne 'stacked_bottom')
{
$self->throw('invalid decoration_position: '.$decoration_position) if (DEBUG);
$decoration_position = 'inside';
}
return $decoration_position;
}
sub _hash {
my $hash = 0;
foreach ( split //, shift ) {
$hash = $hash * 33 + ord($_);
}
return $hash;
}
sub decoration_label_color {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "black";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_label_color = $self->option('decoration_label_color');
return $decoration_label_color
if ( defined $decoration_label_color
and $decoration_label_color ne 'auto'
and $decoration_label_color ne '' );
my $decoration_color = $self->decoration_color($decoration);
return $self->fgcolor
if ((!$decoration_label_color or $decoration_label_color eq 'auto')
and $decoration_color eq "transparent");
# assign color complementary to decoration color
my ( $red, $green, $blue ) =
Bio::Graphics::Panel->color_name_to_rgb($decoration_color);
$decoration_label_color =
sprintf( "#%02X%02X%02X", 255 - $red, 255 - $green, 255 - $blue ); # background complement
return $decoration_label_color;
}
sub decoration_label {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_label = $self->option('decoration_label');
return undef
if ( defined $decoration_label and $decoration_label eq "0" );
return $decoration_label
if ( $decoration_label and $decoration_label ne "1");
# assign decoration name as default label
return $decoration->name;
}
sub decoration_label_position {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_label_position = $self->option('decoration_label_position');
return "inside"
if (!$decoration_label_position);
return $decoration_label_position;
}
sub decoration_border {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
return $self->option('decoration_border');
}
sub decoration_color {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "white";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_color = $self->option('decoration_color');
return $decoration_color
if ( defined $decoration_color
and $decoration_color ne 'auto'
and $decoration_color ne '' );
# automatically assign color by hashing feature name to color index
my $col_idx = _hash($decoration->type.":".$decoration->name) % scalar(@color_names);
# decoration background should be different from CDS background
while ( $self->factory->translate_color($color_names[$col_idx]) eq $self->bgcolor )
{
$col_idx = ($col_idx + 1) % scalar(@color_names);
}
return $color_names[$col_idx];
}
sub decoration_border_color {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return "black";
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_border_color = $self->option('decoration_border_color');
return "black" if (!$decoration_border_color);
return $decoration_border_color;
}
sub decorations_visible {
my $self = shift;
return $self->code_option('decoration_visible');
}
sub decoration_visible {
my $self = shift;
my $decoration = shift;
if (!$decoration)
{
$self->throw("decoration not specified") if (DEBUG);
return 1;
}
$self->{'active_decoration'} = $decoration; # set active decoration for callback
my $decoration_visible = $self->option('decoration_visible');
return $decoration_visible
if ( defined $decoration_visible and $decoration_visible ne "" );
return 1;
}
#sub draw {
# my $self = shift;
#
# warn "draw(): level " . $self->level . " " . $self->feature . "\n"
# if (DEBUG);
#
# $self->Bio::Graphics::Glyph::processed_transcript::draw(@_);
#
#}
sub draw_component {
my $self = shift;
warn "draw_component(): " . ref($self) . " " . $self->feature . "\n" if (DEBUG == 2);
# draw regular glyph first
if ( $self->feature->source eq 'legend' ) {
# hack, but processed_transcript cannot be drawn without arrow...
$self->Bio::Graphics::Glyph::segments::draw_component(@_);
}
else {
$self->Bio::Graphics::Glyph::processed_transcript::draw_component(@_);
}
# draw decorations if parent information available
if ( $self->{'parent'} and $self->feature->primary_tag eq "CDS") {
return $self->draw_decorations(@_);
}
}
sub draw_decorations {
my $self = shift;
my ( $gd, $dx, $dy ) = @_;
warn "draw_decorations(): " . $self->feature . "\n" if (DEBUG == 2);
my ( $left, $top, $right, $bottom ) = $self->bounds( $dx, $dy );
warn " bounds: left:$left,top:$top,right:$right,bottom:$bottom\n"
if (DEBUG == 2);
foreach my $mh (@{$self->sorted_decorations}) {
# skip invisible decorations
next if ( !$self->decoration_visible($mh) );
# determine overlapping segments between protein decorations and feature components
my $overlap_start_nt = max( $self->feature->start, $mh->start );
my $overlap_end_nt = min( $self->feature->end, $mh->end );
if ( $overlap_start_nt <= $overlap_end_nt ) {
# manual override; forces flip to be drawn flipped
$self->factory->panel->flip( $self->flip )
if ( $self->option('flip_minus') );
my ( $h_left, $h_right ) =
$self->map_no_trunc( $overlap_start_nt, $overlap_end_nt + 1 );
( $h_left, $h_right ) = ( $h_right, $h_left )
if ( $h_left > $h_right );
# my ($h_top, $h_bottom) = ($dy + $self->top + $self->pad_top, $dy + $self->bottom - $self->pad_bottom);
my $h_top = $dy + $self->decoration_top($mh);
my $h_bottom = $dy + $self->decoration_bottom($mh);
my $color = $self->decoration_color($mh);
# don't draw over borders; not supported by SVG
$gd->clip( $left + 1, $h_top, $right - 1, $h_bottom )
if ( !$gd->isa("GD::SVG::Image") );
if ($color ne 'transparent')
{
warn "filledRectangle: left=$h_left,top=$h_top,right=$h_right,bottom=$h_bottom\n"
if (DEBUG == 2);
$gd->filledRectangle( $h_left, $h_top, $h_right, $h_bottom,
$self->factory->translate_color($color) );
}
if ($self->decoration_border($mh))
{
my ($b_left, $b_top, $b_right, $b_bottom) = ($h_left, $h_top, $h_right, $h_bottom);
my $border_color = $self->factory->translate_color($self->decoration_border_color($mh));
warn "border rectangle: left=$b_left,top=$b_top,right=$b_right,bottom=$b_bottom\n"
if (DEBUG == 2);
if ($self->decoration_border($mh) eq "dashed")
{
my $image_class = $self->panel->image_class;
my $gdTransparent = $image_class->gdTransparent;
my $gdStyled = $image_class->gdStyled;
$gd->setStyle($border_color,$border_color,$border_color,$gdTransparent,$gdTransparent);
$gd->rectangle( $b_left, $b_top, $b_right, $b_bottom, $gdStyled );
}
else
{
$gd->rectangle( $b_left, $b_top, $b_right, $b_bottom, $border_color );
}
}
$gd->clip( 0, 0, $gd->width, $gd->height )
if ( !$gd->isa("GD::SVG::Image") );
# draw label on first overlapping component
my $h_label = $self->decoration_label($mh);
if ( $h_label
and (
( $self->feature->strand > 0
and $mh->start >= $self->feature->start )
or ( $self->feature->strand <= 0
and $mh->end <= $self->feature->end )
)
)
{
$self->draw_decoration_label( $gd, $dx, $dy, $mh, $h_top,
$h_left, $h_bottom, $h_right, $h_label );
}
}
}
}
sub draw_decoration_label {
my $self = shift;
my ( $gd, $dx, $dy, $mh, $h_top, $h_left, $h_bottom, $h_right, $label ) = @_;
warn "draw_decoration_label(): " . $self->feature . "\n" if (DEBUG == 2);
my $font = $self->labelfont;
my $label_top = $h_top + ($self->decoration_height($mh)-$font->height)/2;
my $label_pos = $self->decoration_label_position($mh);
if ( $label_pos and $label_pos eq "above" ) {
$label_top = $h_top - $font->height - 1;
}
elsif ( $label_pos and $label_pos eq "below" ) {
$label_top = $h_top + $self->decoration_height($mh);
}
my $label_color = $self->decoration_label_color($mh);
$gd->clip( $h_left + 1, $label_top, $h_right - 1, $label_top + $font->height )
if ( !$gd->isa("GD::SVG::Image") );
$gd->string( $font, $h_left + 2,
$label_top, $label, $self->factory->translate_color($label_color) );
$gd->clip( 0, 0, $gd->width, $gd->height )
if ( !$gd->isa("GD::SVG::Image") );
}
1;
__END__
=head1 NAME
Bio::Graphics::Glyph::decorated_transcript - draws processed transcript with protein decorations
=head1 SYNOPSIS
See L<Bio::Graphics::Panel> and L<Bio::Graphics::Glyph>.
=head1 DESCRIPTION
This glyph extends the functionality of the L<Bio::Graphics::Glyph::processed_transcript> glyph
and allows one to draw protein decorations (e.g., signal peptides, transmembrane domains, protein domains)
on top of gene models. Currently, the glyph can draw decorations in form of colored or outlined boxes
inside or around CDS segments. Protein decorations are specified at the 'mRNA' transcript level
in protein coordinates. Protein coordinates are automatically mapped to nucleotide coordinates by the glyph.
Decorations are allowed to span exon-exon junctions, in which case decorations are split between exons.
By default, the glyph automatically assigns different colors to different types of protein decorations, whereas
decorations of the same type are always assigned the same color.
Protein decorations are provided either with mRNA features inside GFF files (see example below) or
dynamically via callback function using the B<additional_decorations> option (see glyph options).
The following line is an example of an mRNA feature in a GFF file that contains two protein decorations,
one signal peptide predicted by SignalP and one transmembrane domain predicted by TMHMM:
C<chr1 my_source mRNA 74796 75599 . + . ID=rna_gene-1;protein_decorations=SignalP40:SP:1:23:0:my_comment,TMHMM:TM:187:209:0>
Each protein decoration consists of six fields separated by a colon:
=over
=item 1. type
Decoration type. For example used to specify decoration source (e.g. 'SignalP40')
=item 2. name
Decoration name. Used as decoration label by default (e.g. 'SP' for signal peptide)
=item 3. start
Start coordinate at the protein-level (1-based coordinate)
=item 4. end
End coordinate at the protein-level
=item 5. score
Optional. Score associated with a decoration (e.g. Pfam E-value). This score can be used
to dynamically filter or color decorations via callbacks (see glyph options).
=item 6. description
Optional. User-defined description of decoration. The glyph ignores this description,
but it will be made available to callback functions for inspection. Special characters
like ':' or ',' that might interfere with the GFF tag parser should be avoided.
=back
If callback functions are used as glyph parameters (see below), the callback is called for each
decoration separately. That is, the callback can be called multiple times for a given CDS feature,
but each time with a different decoration that overlaps with this CDS. The currently drawn (active)
decoration is made available to the callback via the glyph method 'active_decoration'. The active
decoration is returned in form of a Bio::Graphics::Feature object, with decoration data fields
mapped to corresponding feature attributes in the following way:
=over
=item * type --> $glyph->active_decoration->type
=item * name --> $glyph->active_decoration->name
=item * nucleotide start coordinate --> $glyph->active_decoration->start
=item * nucleotide end coordinate --> $glyph->active_decoration->end
=item * protein start coordinate --> $glyph->active_decoration->get_tag_values('p_start')
=item * protein end coordinate --> $glyph->active_decoration->get_tag_values('p_end')
=item * score --> $glyph->active_decoration->score
=item * description --> $glyph->active_decoration->description
=back
In addition, the glyph passed to the callback allows access to the parent glyph and
parent feature if required (use $glyph->parent or $glyph->parent->feature).
=head2 OPTIONS
This glyph inherits all options from the L<Bio::Graphics::Glyph::processed_transcript> glyph.
In addition, it recognizes the following glyph-specific options:
Option Description Default
------ ----------- -------
-decoration_visible
Specifies whether decorations should be visible false
or not. For selective display of individual
decorations, specify a callback function and
return 1 or 0 after inspecting the active decoration
of the glyph.
-decoration_color
Decoration background color. If no color is <auto>
specified, colors are assigned automatically by
decoration type and name, whereas decorations of
identical type and name are assigned the same color.
A special color 'transparent' can be used here in
combination with the option 'decoration_border' to
draw decorations as outlines.
-decoration_border
Decoration border style. By default, decorations are 0 (none)
drawn without border ('none' or 0). Other valid
options here include 'solid' or 'dashed'.
-decoration_border_color
Color of decoration border. black
-decoration_label
Decoration label. If not specified, the second data true
field of the decoration is used as label. Set this (decoration name)
option to 0 to get unlabeled decorations. If the label
text extends beyond the size of the decorated segment,
the label will be clipped. Clipping does not occur
for SVG output.
-decoration_label_position
Position of decoration label. Labels can be drawn inside
'inside' decorations (default) or 'above' and 'below'
decorations.
-decoration_label_color
Decoration label color. If not specified, this color
is complementary to decoration_color (e.g., yellow text
on blue background, white on black, etc.). If the
decoration background color is transparent and no
decoration label color is specified, the foreground color
of the underlying transcript glyph is used as default.
-additional_decorations
Additional decorations to those specified in the GFF undefined
file. Expected is a string in the same format as
described above for GFF files.
This parameter is intended to be used as callback
function, which inspects the currently processed
transcript feature (first parameter to callback)
and returns additional protein decorations that
should be drawn.
-decoration_height
Decoration height. Unless specified otherwise, CDS height-2
the height of the decoration is the height of the
underlying transcript glyph minus 2, such that
the decoration is drawn within transcript boundaries.
-decoration_position
Currently decorations can only be drawn inside inside
CDS segments.
-flip_minus
If set to 1, features on the negative strand will be false
drawn flipped. This is not particularly useful in
GBrowse, but becomes handy if multiple features should
be drawn within the same panel, left-aligned, and on
top of each other, for example to allow for easy gene
structure comparisons.
=head1 BUGS
Strandedness arrows are decorated incorrectly. Currently, the glyph plots a rectangular box
over the arrow instead of properly coloring the arrow.
Overlapping decorations are drawn on top of each other without particular order. The only
solution to this problem at this point is to reduce decorations to a non-overlapping
set.
For SVG output or if drawn not inside decorations, decoration labels are not clipped.
Similar as for overlapping decorations, this can result in labels being drawn on top
of each other.
Please report all errors.
=head1 SEE ALSO
L<Bio::Graphics::Panel>,
L<Bio::Graphics::Glyph>,
L<Bio::Graphics::Glyph::decorated_gene>,
L<Bio::Graphics::Glyph::processed_transcript>
=head1 AUTHOR
Christian Frech E<lt>cfa24@sfu.caE<gt>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. See DISCLAIMER.txt for
disclaimers of warranty.
=cut
|