BioPerl-Run
view release on metacpan or search on metacpan
lib/Bio/Tools/Run/Alignment/Pal2Nal.pm view on Meta::CPAN
#
# BioPerl module for Bio::Tools::Run::Alignment::Pal2Nal
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Sendu Bala <bix@sendu.me.uk>
#
# Copyright Sendu Bala
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::Tools::Run::Alignment::Pal2Nal - Wrapper for Pal2Nal
=head1 SYNOPSIS
use Bio::Tools::Run::Alignment::Pal2Nal;
# Make a Pal2Nal factory
$factory = Bio::Tools::Run::Alignment::Pal2Nal->new();
# Run Pal2Nal with a protein alignment file and a multi-fasta nucleotide
# file
my $aln = $factory->run($protein_alignfilename, $nucleotide_filename);
# or with Bioperl objects
$aln = $factory->run($protein_bio_simplalign, [$nucleotide_bio_seq1,
$nucleotide_bio_seq2]);
# combinations of files/ objects are possible
# $aln isa Bio::SimpleAlign of the nucleotide sequences aligned according to
# the protein alignment
=head1 DESCRIPTION
This is a wrapper for running the Pal2Nal perl script by Mikita Suyama. You
can get details here: http://coot.embl.de/pal2nal/. Pal2Nal is used for aligning
a set of nucleotide sequences based on an alignment of their translations.
You can try supplying normal pal2nal command-line arguments to new(), eg.
new() or calling arg-named methods (excluding the initial hyphen, eg.
$factory->(1) to set the - arg).
You will need to enable this Pal2Nal wrapper to find the pal2nal.pl script.
This can be done in (at least) three ways:
1. Make sure the script is in your path.
2. Define an environmental variable PAL2NALDIR which is a
directory which contains the script:
In bash:
export PAL2NALDIR=/home/username/pal2nal/
In csh/tcsh:
setenv PAL2NALDIR /home/username/pal2nal
3. Include a definition of an environmental variable PAL2NALDIR in
every script that will use this Pal2Nal wrapper module, e.g.:
BEGIN { $ENV{PAL2NALDIR} = '/home/username/pal2nal/' }
use Bio::Tools::Run::Alignment::Pal2Nal;
=head1 FEEDBACK
=head2 Mailing Lists
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
the web:
http://redmine.open-bio.org/projects/bioperl/
=head1 AUTHOR - Sendu Bala
Email bix@sendu.me.uk
=head1 APPENDIX
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
=cut
package Bio::Tools::Run::Alignment::Pal2Nal;
use strict;
use Bio::AlignIO;
use Bio::SeqIO;
use base qw(Bio::Tools::Run::Phylo::PhyloBase);
our $PROGRAM_NAME = 'pal2nal.pl';
our $PROGRAM_DIR = $ENV{'PAL2NALDIR'};
# methods for the pal2nal args we support
( run in 0.803 second using v1.01-cache-2.11-cpan-39bf76dae61 )