#!/usr/bin/env perl

package Bio::Roary::Main::QueryRoary;

# ABSTRACT: Take in a groups file and the protein fasta files and output selected data
# PODNAME: query_pan_genome


BEGIN { unshift( @INC, '../lib' ) }
BEGIN { unshift( @INC, './lib' ) }
#BEGIN { unshift( @INC, '/software/pathogen/internal/prod/lib/' ) }
use Bio::Roary::CommandLine::QueryRoary;

Bio::Roary::CommandLine::QueryRoary->new(args => \@ARGV, script_name => $0)->run;

__END__

=pod

=encoding UTF-8

=head1 NAME

query_pan_genome - Take in a groups file and the protein fasta files and output selected data

=head1 VERSION

version 2.0.3

=head1 SYNOPSIS

Take in a groups file and the protein fasta files and output selected data

=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
