|
| 1 | +undef $VERSION; |
| 2 | + |
| 3 | +package Bio::Roary::CommandLine::UniqueGenesPerSample; |
| 4 | + |
| 5 | +# ABSTRACT: Take in the clustered file and produce a sorted file with the frequency of each samples unique genes |
| 6 | + |
| 7 | +=head1 SYNOPSIS |
| 8 | +
|
| 9 | +Take in the clustered file and produce a sorted file with the frequency of each samples unique genes |
| 10 | +
|
| 11 | +=cut |
| 12 | + |
| 13 | +use Moose; |
| 14 | +use Getopt::Long qw(GetOptionsFromArray); |
| 15 | +extends 'Bio::Roary::CommandLine::Common'; |
| 16 | + |
| 17 | +has 'args' => ( is => 'ro', isa => 'ArrayRef', required => 1 ); |
| 18 | +has 'script_name' => ( is => 'ro', isa => 'Str', required => 1 ); |
| 19 | +has 'help' => ( is => 'rw', isa => 'Bool', default => 0 ); |
| 20 | + |
| 21 | +has 'clustered_proteins' => ( is => 'rw', isa => 'Str', default => 'clustered_proteins' ); |
| 22 | +has 'output_filename' => ( is => 'rw', isa => 'Str', default => 'unique_genes_per_sample.tsv' ); |
| 23 | +has 'verbose' => ( is => 'rw', isa => 'Bool', default => 0 ); |
| 24 | +has '_error_message' => ( is => 'rw', isa => 'Str' ); |
| 25 | + |
| 26 | +sub BUILD { |
| 27 | + my ($self) = @_; |
| 28 | + |
| 29 | + my ( $clustered_proteins, $output_filename, $verbose, $help ); |
| 30 | + |
| 31 | + GetOptionsFromArray( |
| 32 | + $self->args, |
| 33 | + 'o|output=s' => \$output_filename, |
| 34 | + 'c|clustered_proteins=s' => \$clustered_proteins, |
| 35 | + 'v|verbose' => \$verbose, |
| 36 | + 'h|help' => \$help, |
| 37 | + ); |
| 38 | + |
| 39 | + if ( defined($verbose) ) { |
| 40 | + $self->verbose($verbose); |
| 41 | + $self->logger->level(10000); |
| 42 | + } |
| 43 | + |
| 44 | + $self->help($help) if ( defined($help) ); |
| 45 | + ( !$self->help ) or die $self->usage_text; |
| 46 | + |
| 47 | + $self->output_filename($output_filename) if ( defined($output_filename) ); |
| 48 | + if ( defined($clustered_proteins) && ( -e $clustered_proteins ) ) { |
| 49 | + $self->clustered_proteins($clustered_proteins); |
| 50 | + } |
| 51 | + else { |
| 52 | + $self->_error_message("Error: Cant access the clustered proteins file"); |
| 53 | + } |
| 54 | +} |
| 55 | + |
| 56 | +sub run { |
| 57 | + my ($self) = @_; |
| 58 | + |
| 59 | + if ( defined( $self->_error_message ) ) { |
| 60 | + print $self->_error_message . "\n"; |
| 61 | + die $self->usage_text; |
| 62 | + } |
| 63 | + |
| 64 | + my $obj = Bio::Roary::UniqueGenesPerSample->new( |
| 65 | + gff_files => $self->gff_files, |
| 66 | + output_filename => $self->output_filename, |
| 67 | + groups_filename => $self->groups_filename, |
| 68 | + ); |
| 69 | + $obj->reannotate; |
| 70 | + |
| 71 | +} |
| 72 | + |
| 73 | +sub usage_text { |
| 74 | + my ($self) = @_; |
| 75 | + |
| 76 | + return <<USAGE; |
| 77 | +Usage: roary-unique_genes_per_sample [options] -c clustered_proteins |
| 78 | +Take in the clustered file and produce a sorted file with the frequency of each samples unique genes |
| 79 | +
|
| 80 | +Options: -o STR output filename [unique_genes_per_sample.tsv] |
| 81 | + -c STR clusters filename [clustered_proteins] |
| 82 | + -v verbose output to STDOUT |
| 83 | + -h this help message |
| 84 | +
|
| 85 | +For further info see: http://sanger-pathogens.github.io/Roary/ |
| 86 | +USAGE |
| 87 | +} |
| 88 | + |
| 89 | +__PACKAGE__->meta->make_immutable; |
| 90 | +no Moose; |
| 91 | +1; |
0 commit comments