#!/usr/bin/env perl

package Bio::Roary::Main::RoaryCoreAlignment;

# ABSTRACT: Take in the group statistics spreadsheet and the location of the gene multifasta files and create a core alignment.
# PODNAME: pan_genome_core_alignment

=head1 SYNOPSIS

 Take in the group statistics spreadsheet and the location of the gene multifasta files and create a core alignment.

=cut

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

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