This file is indexed.

/usr/share/doc/bioperl/examples/root/lib/TestInterface.pm is in bioperl 1.6.901-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
=head1 NAME

TestInterface - A simple subclass of Interface

=head1 DESCRIPTION

This module demonstrates how to use the generic Bio::Root::RootI
superclass.

=head1 AUTHOR

Steve Chervitz E<lt>sac@bioperl.orgE<gt>

=cut

package TestInterface;


use base qw(Bio::Root::RootI);

sub data {
    my $self = shift;
    $self->throw_not_implemented;
}

sub foo {
    my $self = shift;
    $self->throw_not_implemented;
}

sub bar {
    my $self = shift;
    $self->throw_not_implemented;
}


1;