view Roary/bin/roary-unique_genes_per_sample @ 3:e95344f6dfc5 draft default tip

Uploaded
author dereeper
date Fri, 12 Nov 2021 16:32:26 +0000
parents c47a5f61bc9f
children
line wrap: on
line source

#!/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;