Need to add to Modware::Feature::GENERIC::
sub _get_cached_sequences{
my ($self, @args) = @_;
my $seqs = {};
$seqs->{'default'} = $self->bioperl()->seq()->seq();
$self->cached_sequences( $seqs );
}.
The documentation states to use a named argument ( -name => $name )
However the code is configured to use a single argument ( $name)
The code should be fixed to use a named argument.