| 0 | 1 #!/usr/bin/env perl | 
|  | 2 | 
|  | 3 package Bio::Roary::Main::ExtractProteomeFromGFF; | 
|  | 4 | 
|  | 5 # ABSTRACT: Take in GFF files and output the proteome | 
|  | 6 # PODNAME: extract_proteome_from_gff | 
|  | 7 | 
|  | 8 =head1 SYNOPSIS | 
|  | 9 | 
|  | 10 Take in GFF files and output the proteome | 
|  | 11 | 
|  | 12 =cut | 
|  | 13 | 
|  | 14 use Cwd qw(abs_path); | 
|  | 15 BEGIN { unshift( @INC, abs_path('./lib') ) } | 
|  | 16 BEGIN { unshift( @INC, abs_path('./t/lib') ) } | 
|  | 17 use Bio::Roary::CommandLine::ExtractProteomeFromGff; | 
|  | 18 | 
|  | 19 Bio::Roary::CommandLine::ExtractProteomeFromGff->new(args => \@ARGV, script_name => $0)->run; |