From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# $Id: revseq.pm,v 1.6 2006/07/04 22:23:35 mauricio Exp $
# BioPerl module for Bio::Tools::Run::PiseApplication::revseq
#
# Cared for by Catherine Letondal <letondal@pasteur.fr>
#
# For copyright and disclaimer see below.
#
# POD documentation - main docs before the code
=head1 NAME
Bio::Tools::Run::PiseApplication::revseq
=head1 SYNOPSIS
#
=head1 DESCRIPTION
Bio::Tools::Run::PiseApplication::revseq
Bioperl class for:
REVSEQ Reverse and complement a sequence (EMBOSS)
Parameters:
(see also:
for available values):
revseq (String)
init (String)
sequence (Sequence)
sequence -- dna [sequences] (-sequence)
pipe: seqsfile
reverse (Switch)
Reverse sequence (-reverse)
complement (Switch)
Complement sequence (-complement)
outseq (OutFile)
outseq (-outseq)
pipe: seqsfile
outseq_sformat (Excl)
Output format for: outseq
auto (String)
=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 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:
=head1 AUTHOR
Catherine Letondal (letondal@pasteur.fr)
=head1 COPYRIGHT
Copyright (C) 2003 Institut Pasteur & Catherine Letondal.
All Rights Reserved.
This module is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 DISCLAIMER
This software is provided "as is" without warranty of any kind.
=head1 SEE ALSO
=over
=item *
=item *
Bio::Tools::Run::PiseApplication
=item *
Bio::Tools::Run::AnalysisFactory::Pise
=item *
Bio::Tools::Run::PiseJob
=back
=cut
#'
use vars qw(@ISA);
use strict;
@ISA = qw(Bio::Tools::Run::PiseApplication);
=head2 new
Title : new()
Usage : my $revseq = Bio::Tools::Run::PiseApplication::revseq->new($location, $email, @params);
Function: Creates a Bio::Tools::Run::PiseApplication::revseq object.
This method should not be used directly, but rather by
a Bio::Tools::Run::AnalysisFactory::Pise instance.
my $factory = Bio::Tools::Run::AnalysisFactory::Pise->new();
my $revseq = $factory->program('revseq');
Example : -
Returns : An instance of Bio::Tools::Run::PiseApplication::revseq.
=cut
sub new {
my ($class, $location, $email, @params) = @_;
my $self = $class->SUPER::new($location, $email);
# -- begin of definitions extracted from /local/gensoft/lib/Pise/5.a/PerlDef/revseq.pm
$self->{COMMAND} = "revseq";
$self->{VERSION} = "5.a";
$self->{TITLE} = "REVSEQ";
$self->{DESCRIPTION} = "Reverse and complement a sequence (EMBOSS)";
$self->{OPT_EMAIL} = 0;
$self->{CATEGORIES} = [
"edit",
];
$self->{_INTERFACE_STANDOUT} = undef;
$self->{_STANDOUT_FILE} = undef;
$self->{TOP_PARAMETERS} = [
"revseq",
"init",
"input",
"advanced",
"output",
"auto",
];
$self->{PARAMETERS_ORDER} = [
"revseq",
"init",
"input", # input Section
"sequence", # sequence -- dna [sequences] (-sequence)
"advanced", # advanced Section
"reverse", # Reverse sequence (-reverse)
"complement", # Complement sequence (-complement)
"output", # output Section
"outseq", # outseq (-outseq)
"outseq_sformat", # Output format for: outseq
"auto",
];
$self->{TYPE} = {
"revseq" => 'String',
"init" => 'String',
"input" => 'Paragraph',
"sequence" => 'Sequence',
"advanced" => 'Paragraph',
"reverse" => 'Switch',
"complement" => 'Switch',
"output" => 'Paragraph',
"outseq" => 'OutFile',
"outseq_sformat" => 'Excl',
"auto" => 'String',
};
$self->{FORMAT} = {
"init" => {
"perl" => ' "" ',
},
"input" => {
},
"sequence" => {
"perl" => '" -sequence=$value -sformat=fasta"',
},
"advanced" => {
},
"reverse" => {
"perl" => '($value)? "" : " -noreverse"',
},
"complement" => {
"perl" => '($value)? "" : " -nocomplement"',
},
"output" => {
},
"outseq" => {
"perl" => '" -outseq=$value"',
},
"outseq_sformat" => {
"perl" => '" -osformat=$value"',
},
"auto" => {
"perl" => '" -auto -stdout"',
},
"revseq" => {
"perl" => '"revseq"',
}
};
$self->{FILENAMES} = {
};
$self->{SEQFMT} = {
"sequence" => [8],
};
$self->{GROUP} = {
"init" => -10,
"sequence" => 1,
"reverse" => 2,
"complement" => 3,
"outseq" => 4,
"outseq_sformat" => 5,
"auto" => 6,
"revseq" => 0
};
$self->{BY_GROUP_PARAMETERS} = [
"init",
"input",
"advanced",
"output",
"revseq",
"sequence",
"reverse",
"complement",
"outseq",
"outseq_sformat",
"auto",
];
$self->{SIZE} = {
};
$self->{ISHIDDEN} = {
"init" => 1,
"input" => 0,
"sequence" => 0,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 0,
"outseq_sformat" => 0,
"auto" => 1,
"revseq" => 1
};
$self->{ISCOMMAND} = {
"init" => 0,
"input" => 0,
"sequence" => 0,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 0,
"outseq_sformat" => 0,
"auto" => 0,
};
$self->{ISMANDATORY} = {
"init" => 0,
"input" => 0,
"sequence" => 1,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 1,
"outseq_sformat" => 0,
"auto" => 0,
};
$self->{PROMPT} = {
"init" => "",
"input" => "input Section",
"sequence" => "sequence -- dna [sequences] (-sequence)",
"advanced" => "advanced Section",
"reverse" => "Reverse sequence (-reverse)",
"complement" => "Complement sequence (-complement)",
"output" => "output Section",
"outseq" => "outseq (-outseq)",
"outseq_sformat" => "Output format for: outseq",
"auto" => "",
};
$self->{ISSTANDOUT} = {
"init" => 0,
"input" => 0,
"sequence" => 0,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 0,
"outseq_sformat" => 0,
"auto" => 0,
};
$self->{VLIST} = {
"input" => ['sequence',],
"advanced" => ['reverse','complement',],
"output" => ['outseq','outseq_sformat',],
"outseq_sformat" => ['fasta','fasta','gcg','gcg','phylip','phylip','embl','embl','swiss','swiss','ncbi','ncbi','nbrf','nbrf','genbank','genbank','ig','ig','codata','codata','strider','strider','acedb','acedb','staden','staden','text','text','fitch','fitch','msf','msf','clustal','clustal','phylip','phylip','phylip3','phylip3','asn1','asn1',],
};
$self->{FLIST} = {
};
$self->{SEPARATOR} = {
};
$self->{VDEF} = {
"reverse" => '1',
"complement" => '1',
"outseq" => 'outseq.out',
"outseq_sformat" => 'fasta',
};
$self->{PRECOND} = {
"init" => { "perl" => '1' },
"input" => { "perl" => '1' },
"sequence" => { "perl" => '1' },
"advanced" => { "perl" => '1' },
"reverse" => { "perl" => '1' },
"complement" => { "perl" => '1' },
"output" => { "perl" => '1' },
"outseq" => { "perl" => '1' },
"outseq_sformat" => { "perl" => '1' },
"auto" => { "perl" => '1' },
};
$self->{CTRL} = {
};
$self->{PIPEOUT} = {
"outseq" => {
'1' => "seqsfile",
},
};
$self->{WITHPIPEOUT} = {
};
$self->{PIPEIN} = {
"sequence" => {
"seqsfile" => '1',
},
};
$self->{WITHPIPEIN} = {
};
$self->{ISCLEAN} = {
"init" => 0,
"input" => 0,
"sequence" => 0,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 0,
"outseq_sformat" => 0,
"auto" => 0,
};
$self->{ISSIMPLE} = {
"init" => 0,
"input" => 0,
"sequence" => 1,
"advanced" => 0,
"reverse" => 0,
"complement" => 0,
"output" => 0,
"outseq" => 1,
"outseq_sformat" => 1,
"auto" => 0,
};
$self->{PARAMFILE} = {
};
$self->{COMMENT} = {
"reverse" => [
"Set this to be false if you do not wish to reverse the output sequence",
],
"complement" => [
"Set this to be false if you do not wish to complement the output sequence",
],
};
$self->{SCALEMIN} = {
};
$self->{SCALEMAX} = {
};
$self->{SCALEINC} = {
};
$self->{INFO} = {
};
# -- end of definitions extracted from /local/gensoft/lib/Pise/5.a/PerlDef/revseq.pm
$self->_init_params(@params);
return $self;
}
1; # Needed to keep compiler happy