package EnsEMBL::Web::ImageConfig::alignsliceviewbottom;
use strict;
use warnings;
no warnings 'uninitialized';
use base qw(EnsEMBL::Web::ImageConfig);
sub init {
my ($self) = @_;
$self->set_parameters({
'title' => 'Detailed panel',
'show_buttons' => 'no', # do not show +/- buttons
'button_width' => 8, # width of red "+/-" buttons
'show_labels' => 'yes', # show track names on left-hand side
'label_width' => 113, # width of labels on left-hand side
'margin' => 5, # margin
'spacing' => 2, # spacing
## Now let us set some of the optional parameters....
'opt_lines' => 1, # draw registry lines
});
$self->create_menus(
'sequence' => 'Sequence',
'marker' => 'Markers',
'alignslice_transcript' => 'Genes',
# 'misc_set' => 'Misc. regions',
'synteny' => 'Synteny',
'repeat' => 'Repeats',
# 'user_data' => 'User uploaded data',
'other' => 'Additional features',
'information' => 'Information',
'options' => 'Options'
);
$self->load_tracks;
}
1;