Mercurial > repos > dereeper > roary_plots
annotate Roary/bin/iterative_cdhit @ 3:e95344f6dfc5 draft default tip
Uploaded
| author | dereeper | 
|---|---|
| date | Fri, 12 Nov 2021 16:32:26 +0000 | 
| parents | c47a5f61bc9f | 
| children | 
| rev | line source | 
|---|---|
| 0 | 1 #!/usr/bin/env perl | 
| 2 | |
| 3 package Bio::Roary::Main::IterativeCdhit; | |
| 4 | |
| 5 # ABSTRACT: Iteratively run cdhit | |
| 6 # PODNAME: iterative_cdhit | |
| 7 | |
| 8 =head1 SYNOPSIS | |
| 9 | |
| 10 Iteratively run cdhit | |
| 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::IterativeCdhit; | |
| 18 | |
| 19 Bio::Roary::CommandLine::IterativeCdhit->new(args => \@ARGV, script_name => $0)->run; | 
