Bio::EnsEMBL::Funcgen ExternalFeature
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Toolbar
WebCvsRaw content
Summary
Bio::EnsEMBL::ExternalFeature - A module to represent an externally curated feature
mapping from an external_db.
Package variables
No package variables defined.
Included modules
Bio::EnsEMBL::Funcgen::FeatureType
Bio::EnsEMBL::Funcgen::SetFeature
Bio::EnsEMBL::Utils::Argument qw ( rearrange )
Bio::EnsEMBL::Utils::Exception qw ( throw )
Inherit
Bio::EnsEMBL::Funcgen::SetFeature
Synopsis
use Bio::EnsEMBL::Funcgen::ExternalFeature;
my $feature = Bio::EnsEMBL::Funcgen::ExternalFeature->new(
-SLICE => $chr_1_slice,
-START => 1_000_000,
-END => 1_000_024,
-STRAND => -1,
-DISPLAY_LABEL => $text,
-FEATURE_SET => $fset,
-FEATURE_TYPE => $ftype,
);
Description
An ExternalFeature object represents the genomic placement of an externally curated
feature from and DB external to Ensembl.
Methods
display_labelDescriptionCode
newDescriptionCode
Methods description
display_labelcode    nextTop
  Arg [1]    : string - display label
Example : my $label = $feature->display_label();
Description: Getter and setter for the display label of this feature.
Returntype : str
Exceptions : None
Caller : General
Status : At Risk - move to SetFeature?
newcodeprevnextTop
 
Arg [-FEATURE_SET] : Bio::EnsEMBL::Funcgen::FeatureSet
Arg [-FEATURE_TYPE] : Bio::EnsEMBL::Funcgen::FeatureType
Arg [-ANALYSIS] : Bio::EnsEMBL::Analysis
Arg [-SLICE] : Bio::EnsEMBL::Slice - The slice on which this feature is.
Arg [-START] : int - The start coordinate of this feature relative to the start of the slice
it is sitting on. Coordinates start at 1 and are inclusive.
Arg [-END] : int -The end coordinate of this feature relative to the start of the slice
it is sitting on. Coordinates start at 1 and are inclusive.
Arg [-DISPLAY_LABEL]: string - Display label for this feature
Arg [-STRAND] : int - The orientation of this feature. Valid values are 1, -1 and 0.
Arg [-dbID] : (optional) int - Internal database ID.
Arg [-ADAPTOR] : (optional) Bio::EnsEMBL::DBSQL::BaseAdaptor - Database adaptor.
Example : my $feature = Bio::EnsEMBL::Funcgen::ExternalFeature->new(
-SLICE => $chr_1_slice,
-START => 1_000_000,
-END => 1_000_024,
-STRAND => -1,
-DISPLAY_LABEL => $text,
-FEATURE_SET => $fset,
-FEATURE_TYPE => $ftpe,
);
Description: Constructor for ExternalFeature objects. Returntype : Bio::EnsEMBL::Funcgen::ExternalFeature Exceptions : None Caller : General Status : At Risk
Methods code
display_labeldescriptionprevnextTop
sub display_label {
  my $self = shift;
	
  $self->{'display_label'} = shift if @_;
    
  if(! $self->{'display_label'}  && $self->adaptor()){
	
	$self->{'display_label'} = $self->feature_set->feature_type->name().' - ';
	$self->{'display_label'} .= $self->cell_type->name() if $self->cell_type();
	$self->{'display_label'} .= $self->feature_type->name() if(defined $self->{'feature_type'});
  }
	
  return $self->{'display_label'};
}



1;
}
newdescriptionprevnextTop
sub new {
  my $caller = shift;
	

  #Can remove this?
my $class = ref($caller) || $caller; my $self = $class->SUPER::new(@_); return $self;
}
General documentation
AUTHORTop
This module was created by Nathan Johnson.
This module is part of the Ensembl project: /
CONTACTTop
Post comments or questions to the Ensembl development list: ensembl-dev@ebi.ac.uk