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