Mercurial > repos > dereeper > roary_plots
annotate Roary/bin/roary-unique_genes_per_sample @ 0:c47a5f61bc9f draft
Uploaded
| author | dereeper |
|---|---|
| date | Fri, 14 May 2021 20:27:06 +0000 |
| parents | |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env perl |
| 2 | |
| 3 package Bio::Roary::Main::UniqueGenesPerSample; | |
| 4 | |
| 5 # ABSTRACT: Take in the clustered file and produce a sorted file with the frequency of each samples unique genes | |
| 6 # PODNAME: roary-unique_genes_per_sample | |
| 7 | |
| 8 =head1 SYNOPSIS | |
| 9 | |
| 10 Take in the clustered file and produce a sorted file with the frequency of each samples unique genes | |
| 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::UniqueGenesPerSample; | |
| 18 | |
| 19 Bio::Roary::CommandLine::UniqueGenesPerSample->new(args => \@ARGV, script_name => $0)->run; |
