Mercurial > repos > dereeper > roary_plots
view Roary/bin/roary @ 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::Roary; # ABSTRACT: Create a pan genome from a set of GFF files # PODNAME: roary =head1 SYNOPSIS Create a pan genome from a set of GFF files =cut use Cwd qw(abs_path); BEGIN { unshift( @INC, abs_path('./lib') ) } BEGIN { unshift( @INC, abs_path('./t/lib') ) } use Bio::Roary::CommandLine::Roary; Bio::Roary::CommandLine::Roary->new(args => \@ARGV, script_name => $0)->run;