Mercurial > repos > dereeper > roary_plots
annotate Roary/bin/roary @ 2:3f98630a0c20 draft
Deleted selected files
| author | dereeper |
|---|---|
| date | Fri, 12 Nov 2021 16:30:50 +0000 |
| parents | c47a5f61bc9f |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env perl |
| 2 | |
| 3 package Bio::Roary::Main::Roary; | |
| 4 | |
| 5 # ABSTRACT: Create a pan genome from a set of GFF files | |
| 6 # PODNAME: roary | |
| 7 | |
| 8 =head1 SYNOPSIS | |
| 9 | |
| 10 Create a pan genome from a set of GFF files | |
| 11 | |
| 12 =cut | |
| 13 | |
| 14 use Cwd qw(abs_path); | |
| 15 BEGIN { unshift( @INC, abs_path('./lib') ) } | |
| 16 BEGIN { unshift( @INC, abs_path('./t/lib') ) } | |
| 17 use Bio::Roary::CommandLine::Roary; | |
| 18 | |
| 19 Bio::Roary::CommandLine::Roary->new(args => \@ARGV, script_name => $0)->run; |
