| Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
See Bio::Graphics::Panel and Bio::Graphics::Glyph.
Option Description Default
------ ----------- -------
-fgcolor Foreground color black
-outlinecolor Synonym for -fgcolor
-bgcolor Background color turquoise
-fillcolor Synonym for -bgcolor
-linewidth Line width 1
-height Height of glyph 10
-font Glyph font gdSmallFont
-connector Connector type 0 (false)
-connector_color
Connector color black
-label Whether to draw a label 0 (false)
-description Whether to draw a description 0 (false)
-strand_arrow Whether to indicate 0 (false)
strandedness
| connector | No description | Code |
| bump | No description | Code |
| label | No description | Code |
| description | No description | Code |
| _subseq | No description | Code |
| connector | description | prev | next | Top |
my $self = shift; return $self->SUPER::connector(@_) if $self->all_callbacks; return $self->SUPER::connector(@_) || 'solid';}
| bump | description | prev | next | Top |
my $self = shift; return $self->SUPER::bump(@_) if $self->all_callbacks; return 0;}
| label | description | prev | next | Top |
my $self = shift; return $self->SUPER::label(@_) if $self->all_callbacks; return unless $self->{level} == 0; return $self->SUPER::label(@_);}
| description | description | prev | next | Top |
my $self = shift; return $self->SUPER::description(@_) if $self->all_callbacks; return unless $self->{level} == 0; return $self->SUPER::description(@_);}
| _subseq | description | prev | next | Top |
my $self = shift; my $feature = shift; my @subseq = $self->SUPER::_subseq($feature); return @subseq if @subseq; if ($self->level == 0 && !@subseq && !eval{$feature->compound}) { my($start,$end) = ($feature->start,$feature->end); ($start,$end) = ($end,$start) if $start > $end; # to keep Bio::Location::Simple from bitching}
return Bio::Location::Simple->new(-start=>$start,-end=>$end); } else { return; }
| BUGS | Top |
| SEE ALSO | Top |
| AUTHOR | Top |