— — |
@ISA = qw(Bio::Tools::Run::PiseApplication) ;
sub new {
my ( $class , $location , $email , @params ) = @_ ;
my $self = $class ->SUPER::new( $location , $email );
$self ->{COMMAND} = "scope" ;
$self ->{VERSION} = "5.a" ;
$self ->{TITLE} = "SCOPE" ;
$self ->{DESCRIPTION} = "Convert raw scop classification file to embl-like format (EMBOSS)" ;
$self ->{OPT_EMAIL} = 0;
$self ->{CATEGORIES} = [
"utils:database creation" ,
];
$self ->{_INTERFACE_STANDOUT} = undef ;
$self ->{_STANDOUT_FILE} = undef ;
$self ->{TOP_PARAMETERS} = [
"scope" ,
"init" ,
"input" ,
"output" ,
"auto" ,
];
$self ->{PARAMETERS_ORDER} = [
"scope" ,
"init" ,
"input" ,
"infile" ,
"output" ,
"outfile" ,
"auto" ,
];
$self ->{TYPE} = {
"scope" => 'String' ,
"init" => 'String' ,
"input" => 'Paragraph' ,
"infile" => 'InFile' ,
"output" => 'Paragraph' ,
"outfile" => 'OutFile' ,
"auto" => 'String' ,
};
$self ->{FORMAT} = {
"init" => {
"perl" => ' "" ' ,
},
"input" => {
},
"infile" => {
"perl" => '" -infile=$value"' ,
},
"output" => {
},
"outfile" => {
"perl" => '" -outfile=$value"' ,
},
"auto" => {
"perl" => '" -auto -stdout"' ,
},
"scope" => {
"perl" => '"scope"' ,
}
};
$self ->{FILENAMES} = {
};
$self ->{SEQFMT} = {
};
$self ->{GROUP} = {
"init" => -10,
"infile" => 1,
"outfile" => 2,
"auto" => 3,
"scope" => 0
};
$self ->{BY_GROUP_PARAMETERS} = [
"init" ,
"input" ,
"output" ,
"scope" ,
"infile" ,
"outfile" ,
"auto" ,
];
$self ->{SIZE} = {
};
$self ->{ISHIDDEN} = {
"init" => 1,
"input" => 0,
"infile" => 0,
"output" => 0,
"outfile" => 0,
"auto" => 1,
"scope" => 1
};
$self ->{ISCOMMAND} = {
"init" => 0,
"input" => 0,
"infile" => 0,
"output" => 0,
"outfile" => 0,
"auto" => 0,
};
$self ->{ISMANDATORY} = {
"init" => 0,
"input" => 0,
"infile" => 1,
"output" => 0,
"outfile" => 1,
"auto" => 0,
};
$self ->{PROMPT} = {
"init" => "" ,
"input" => "input Section" ,
"infile" => "Name of scop file for input (raw format) (-infile)" ,
"output" => "output Section" ,
"outfile" => "Name of scop file for output (embl-like format) (-outfile)" ,
"auto" => "" ,
};
$self ->{ISSTANDOUT} = {
"init" => 0,
"input" => 0,
"infile" => 0,
"output" => 0,
"outfile" => 0,
"auto" => 0,
};
$self ->{VLIST} = {
"input" => [ 'infile' ,],
"output" => [ 'outfile' ,],
};
$self ->{FLIST} = {
};
$self ->{SEPARATOR} = {
};
$self ->{VDEF} = {
"outfile" => 'Escop.dat' ,
};
$self ->{PRECOND} = {
"init" => { "perl" => '1' },
"input" => { "perl" => '1' },
"infile" => { "perl" => '1' },
"output" => { "perl" => '1' },
"outfile" => { "perl" => '1' },
"auto" => { "perl" => '1' },
};
$self ->{CTRL} = {
};
$self ->{PIPEOUT} = {
};
$self ->{WITHPIPEOUT} = {
};
$self ->{PIPEIN} = {
};
$self ->{WITHPIPEIN} = {
};
$self ->{ISCLEAN} = {
"init" => 0,
"input" => 0,
"infile" => 0,
"output" => 0,
"outfile" => 0,
"auto" => 0,
};
$self ->{ISSIMPLE} = {
"init" => 0,
"input" => 0,
"infile" => 1,
"output" => 0,
"outfile" => 1,
"auto" => 0,
};
$self ->{PARAMFILE} = {
};
$self ->{COMMENT} = {
};
$self ->{SCALEMIN} = {
};
$self ->{SCALEMAX} = {
};
$self ->{SCALEINC} = {
};
$self ->{INFO} = {
};
$self ->_init_params( @params );
return $self ;
}
1;
|