view Roary/bin/parallel_all_against_all_blastp @ 1:997f4f276c1c draft

Uploaded
author dereeper
date Fri, 14 May 2021 20:42:33 +0000
parents c47a5f61bc9f
children
line wrap: on
line source

#!/usr/bin/env perl

package Bio::Roary::Main::ParallelAllAgainstAllBlastp;

# ABSTRACT: Take in a FASTA file of proteins and blast against itself
# PODNAME: parallel_all_against_all_blastp

=head1 SYNOPSIS

Take in a FASTA file of proteins and blast against itself

=cut

use Cwd qw(abs_path); 
BEGIN { unshift( @INC, abs_path('./lib') ) }
BEGIN { unshift( @INC, abs_path('./t/lib') ) }
use Bio::Roary::CommandLine::ParallelAllAgainstAllBlastp;

Bio::Roary::CommandLine::ParallelAllAgainstAllBlastp->new(args => \@ARGV, script_name => $0)->run;