package EnsEMBL::Web::Component::Info::IPtop40;
use strict;
use warnings;
no warnings "uninitialized";
use base qw(EnsEMBL::Web::Component);
sub _init {
my $self = shift;
$self->cacheable( 0 );
$self->ajaxable( 0 );
}
sub content {
my $self = shift;
my $object = $self->object;
my $html;
my $file = '/ssi/species/stats_'.$object->species.'_IPtop40.html';
$html .= EnsEMBL::Web::Apache::SendDecPage::template_INCLUDE(undef, $file);
return $html;
}
1;