view Roary/bin/query_pan_genome @ 0:c47a5f61bc9f draft

Uploaded
author dereeper
date Fri, 14 May 2021 20:27:06 +0000
parents
children
line wrap: on
line source

#!/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

=head1 SYNOPSIS

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

=cut

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

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