package Bio::EnsEMBL::GlyphSet::SE_generic_match_label;
use strict;
use base qw(Bio::EnsEMBL::GlyphSet);
sub _init {
my ($self) = @_;
my $Config = $self->{'config'};
my $height = $Config->get_parameter('height') || 20;
$self->push( $self->Space({
'x' => 1,
'y' => 0,
'width' => 1,
'height' => $height,
'absolutey' => 1,
'absolutex' => 1,
}));
}
1;