view Roary/bin/create_pan_genome @ 1:997f4f276c1c draft

Uploaded
author dereeper
date Fri, 14 May 2021 20:42:33 +0000
parents c47a5f61bc9f
children
line wrap: on
line source

#!/usr/bin/env perl

package Bio::Roary::Main::CreatePanGenome;

# ABSTRACT: Create a pan genome from a set of GFF files with WTSI defaults
# PODNAME: create_pan_genome

=head1 SYNOPSIS

Create a pan genome from a set of GFF files with WTSI defaults

=cut

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

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