Bio::EnsEMBL::Pipeline Analysis
Included librariesPackage variablesGeneral documentationMethods
Toolbar
WebCvsRaw content
Package variables
No package variables defined.
Included modules
Bio::EnsEMBL::Analysis
Bio::EnsEMBL::Utils::Argument qw ( rearrange )
Bio::EnsEMBL::Utils::Exception qw ( deprecate warning throw )
Inherit
Bio::EnsEMBL::Analysis
Synopsis
No synopsis!
Description
No description!
Methods
input_id_type
No description
Code
new
No description
Code
Methods description
None available.
Methods code
input_id_typedescriptionprevnextTop
sub input_id_type {
  my ($self, $type) = @_;
  if($type){
    $self->{'type'} = $type;
  }
  
  return $self->{'type'};
}
newdescriptionprevnextTop
sub new {
  my($class,@args) = @_;
  
  my $self = $class->SUPER::new(@args);
  
  my ($type) = rearrange([qw(INPUT_ID_TYPE)], @args);

  $self->input_id_type($type);

  return $self;
}
General documentation
No general documentation available.