Mercurial > repos > dereeper > roary_plots
diff Roary/bin/roary-unique_genes_per_sample @ 0:c47a5f61bc9f draft
Uploaded
author | dereeper |
---|---|
date | Fri, 14 May 2021 20:27:06 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Roary/bin/roary-unique_genes_per_sample Fri May 14 20:27:06 2021 +0000 @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +package Bio::Roary::Main::UniqueGenesPerSample; + +# ABSTRACT: Take in the clustered file and produce a sorted file with the frequency of each samples unique genes +# PODNAME: roary-unique_genes_per_sample + +=head1 SYNOPSIS + +Take in the clustered file and produce a sorted file with the frequency of each samples unique genes + +=cut + +use Cwd qw(abs_path); +BEGIN { unshift( @INC, abs_path('./lib') ) } +BEGIN { unshift( @INC, abs_path('./t/lib') ) } +use Bio::Roary::CommandLine::UniqueGenesPerSample; + +Bio::Roary::CommandLine::UniqueGenesPerSample->new(args => \@ARGV, script_name => $0)->run;