#!/usr/bin/env perl

package Bio::Roary::Main::RoaryPostAnalysis;

# ABSTRACT: Perform the post analysis on the pan genome
# PODNAME: pan_genome_post_analysis

=head1 SYNOPSIS

Perform the post analysis on the pan genome

=cut

use Cwd qw(abs_path); 
BEGIN { unshift( @INC, abs_path('./lib') ) }
BEGIN { unshift( @INC, abs_path('./t/lib') ) }
use Bio::Roary::CommandLine::RoaryPostAnalysis;

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