Mercurial > repos > dereeper > roary_plots
view Roary/bin/pan_genome_assembly_statistics @ 2:3f98630a0c20 draft
Deleted selected files
author | dereeper |
---|---|
date | Fri, 12 Nov 2021 16:30:50 +0000 |
parents | c47a5f61bc9f |
children |
line wrap: on
line source
#!/usr/bin/env perl package Bio::Roary::Main::AssemblyStatistics; # ABSTRACT: Given a spreadsheet of gene presence and absence calculate some statistics # PODNAME: pan_genome_assembly_statistics =head1 SYNOPSIS Given a spreadsheet of gene presence and absence calculate some statistics =cut use Cwd qw(abs_path); BEGIN { unshift( @INC, abs_path('./lib') ) } BEGIN { unshift( @INC, abs_path('./t/lib') ) } use Bio::Roary::CommandLine::AssemblyStatistics; Bio::Roary::CommandLine::AssemblyStatistics->new(args => \@ARGV, script_name => $0)->run;