Mercurial > repos > dereeper > roary_plots
comparison Roary/bin/pan_genome_post_analysis @ 0:c47a5f61bc9f draft
Uploaded
author | dereeper |
---|---|
date | Fri, 14 May 2021 20:27:06 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c47a5f61bc9f |
---|---|
1 #!/usr/bin/env perl | |
2 | |
3 package Bio::Roary::Main::RoaryPostAnalysis; | |
4 | |
5 # ABSTRACT: Perform the post analysis on the pan genome | |
6 # PODNAME: pan_genome_post_analysis | |
7 | |
8 =head1 SYNOPSIS | |
9 | |
10 Perform the post analysis on the pan genome | |
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::RoaryPostAnalysis; | |
18 | |
19 Bio::Roary::CommandLine::RoaryPostAnalysis->new(args => \@ARGV, script_name => $0)->run; |