This file is indexed.

/usr/share/perl5/Bio/Roary/GroupLabels.pm is in roary 3.8.0+dfsg-1.

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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package Bio::Roary::GroupLabels;
$Bio::Roary::GroupLabels::VERSION = '3.8.0';
# ABSTRACT: Add labels to the groups


use Moose;
use Bio::Roary::Exceptions;

has 'groups_filename' => ( is => 'ro', isa => 'Str', required => 1 );
has 'output_filename' => ( is => 'ro', isa => 'Str', default  => 'labelled_groups_file' );

has '_input_fh'             => ( is => 'ro', lazy => 1,     builder => '_build__input_fh' );
has '_output_fh'            => ( is => 'ro', lazy => 1,     builder => '_build__output_fh' );
has '_group_default_prefix' => ( is => 'ro', isa  => 'Str', default => 'group_' );

sub _build__input_fh {
    my ($self) = @_;
    open( my $fh, $self->groups_filename )
      or Bio::Roary::Exceptions::FileNotFound->throw( error => "Group file not found:" . $self->groups_filename );
    return $fh;
}

sub _build__output_fh {
    my ($self) = @_;
    open( my $fh, '>', $self->output_filename )
      or Bio::Roary::Exceptions::CouldntWriteToFile->throw(
        error => "Couldnt write output file:" . $self->output_filename );
    return $fh;
}

sub add_labels {
    my ($self) = @_;

    my $counter = 1;
    my $in_fh   = $self->_input_fh;
    while (<$in_fh>) {
        my $line = $_;
        next if ( $line eq "" );
        print { $self->_output_fh } $self->_group_default_prefix . $counter . ": " . $line;
        $counter++;
    }
    close( $self->_input_fh );
    close( $self->_output_fh );
    return 1;
}

no Moose;
__PACKAGE__->meta->make_immutable;

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Bio::Roary::GroupLabels - Add labels to the groups

=head1 VERSION

version 3.8.0

=head1 SYNOPSIS

Add labels to the groups
   use Bio::Roary::GroupLabels;

   my $obj = Bio::Roary::GroupLabels->new(
     groups_filename   => 'abc.groups',
     output_filename => 'output.groups'
   );
   $obj->add_labels;

=head1 AUTHOR

Andrew J. Page <ap13@sanger.ac.uk>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2013 by Wellcome Trust Sanger Institute.

This is free software, licensed under:

  The GNU General Public License, Version 3, June 2007

=cut