Bio::Graphics Feature
SummaryIncluded librariesPackage variablesSynopsisDescriptionGeneral documentationMethods
Summary
Bio::Graphics::Feature - A simple feature object for use with Bio::Graphics::Panel
Package variables
No package variables defined.
Included modules
Bio::LocationI
Bio::Root::Root
Bio::SeqFeatureI
Bio::SeqI
Inherit
Bio::LocationI Bio::Root::Root Bio::SeqFeatureI Bio::SeqI
Synopsis
 use Bio::Graphics::Feature;

 # create a simple feature with no internal structure
 $f = Bio::Graphics::Feature->new(-start => 1000,
                                  -stop  => 2000,
                                  -type  => 'transcript',
                                  -name  => 'alpha-1 antitrypsin',
				  -desc  => 'an enzyme inhibitor',
                                 );

 # create a feature composed of multiple segments, all of type "similarity"
 $f = Bio::Graphics::Feature->new(-segments => [[1000,1100],[1500,1550],[1800,2000]],
                                  -name     => 'ABC-3',
                                  -type     => 'gapped_alignment',
                                  -subtype  => 'similarity');

 # build up a gene exon by exon
 $e1 = Bio::Graphics::Feature->new(-start=>1,-stop=>100,-type=>'exon');
 $e2 = Bio::Graphics::Feature->new(-start=>150,-stop=>200,-type=>'exon');
 $e3 = Bio::Graphics::Feature->new(-start=>300,-stop=>500,-type=>'exon');
 $f  = Bio::Graphics::Feature->new(-segments=>[$e1,$e2,$e3],-type=>'gene');
Description
This is a simple Bio::SeqFeatureI-compliant object that is compatible
with Bio::Graphics::Panel. With it you can create lightweight feature
objects for drawing.
All methods are as described in Bio::SeqFeatureI with the following additions:
 $feature = Bio::Graphics::Feature->new(@args);
This method creates a new feature object. You can create a simple
feature that contains no subfeatures, or a hierarchically nested object.
Arguments are as follows:
  -start       the start position of the feature
  -end         the stop position of the feature
  -stop        an alias for end
  -name        the feature name (returned by seqname())
  -type        the feature type (returned by primary_tag())
  -source      the source tag
  -desc        a description of the feature
  -segments    a list of subfeatures (see below)
  -subtype     the type to use when creating subfeatures
  -strand      the strand of the feature (one of -1, 0 or +1)
  -id          an alias for -name
  -seqname     an alias for -name
  -primary_id  an alias for -name
  -display_id  an alias for -name
  -display_name an alias for -name  (do you get the idea the API has changed?)
  -url         a URL to link to when rendered with Bio::Graphics
  -configurator an object (like a Bio::Graphics::FeatureFile) that knows how 
               to configure the graphical representation of the object based
               on its type.
  -attributes  a hashref of tag value attributes, in which the key is the tag
               and the value is an array reference of values
  -factory     a reference to a feature factory, used for compatibility with
               more obscure parts of Bio::DB::GFF
The subfeatures passed in -segments may be an array of
Bio::Graphics::Feature objects, or an array of [$start,$stop]
pairs. Each pair should be a two-element array reference. In the
latter case, the feature type passed in -subtype will be used when
creating the subfeatures.
If no feature type is passed, then it defaults to "feature". A number of new methods are provided for compatibility with
Ace::Sequence, which has a slightly different API from SeqFeatureI:
    url()
    Get/set the URL that the graphical rendering of this feature will link to.
    add_segment(@segments)
    Add one or more segments (a subfeature). Segments can either be
Feature objects, or [start,stop] arrays, as in the -segments argument
to new(). The feature endpoints are automatically adjusted.
    segments()
    An alias for sub_SeqFeature().
    get_SeqFeatures()
    Alias for sub_SeqFeature()
    get_all_SeqFeatures()
    Alias for sub_SeqFeature()
    merged_segments()
    Another alias for sub_SeqFeature().
    stop()
    An alias for end().
    name()
    An alias for seqname().
    exons()
    An alias for sub_SeqFeature() (you don't want to know why!)
    configurator()
    Get/set the configurator that knows how to adjust the graphical
representation of this feature based on its type. Currently the only
configurator that will work is Bio::Graphics::FeatureFile.
Methods
primary_seq
No description
Code
annotation
No description
Code
species
No description
Code
feature_count
No description
Code
target
No description
Code
hit
No description
Code
new
No description
Code
add_segment
No description
Code
segments
No description
Code
score
No description
Code
primary_tag
No description
Code
name
No description
Code
seq_id
No description
Code
ref
No description
Code
start
No description
Code
end
No description
Code
strand
No description
Code
length
No description
Code
seq
No description
Code
factoryDescriptionCode
display_nameDescriptionCode
accession_numberDescriptionCode
alphabetDescriptionCode
descDescriptionCode
notes
No description
Code
low
No description
Code
high
No description
Code
locationDescriptionCode
coordinate_policy
No description
Code
min_start
No description
Code
max_start
No description
Code
min_end
No description
Code
max_end
No description
Code
start_pos_type
No description
Code
end_pos_type
No description
Code
to_FTstring
No description
Code
phase
No description
Code
class
No description
Code
gff_string
No description
Code
gff3_string
No description
Code
db
No description
Code
source_tag
No description
Code
introns
No description
Code
has_tag
No description
Code
configurator
No description
Code
url
No description
Code
make_link
No description
Code
escape
No description
Code
all_tags
No description
Code
each_tag_value
No description
Code
format_attributes
No description
Code
DESTROY
No description
Code
Methods description
factorycode    nextTop
 Title   : factory
 Usage   : $factory = $obj->factory([$new_factory])
 Function: Returns the feature factory from which this feature was generated.
           Mostly for compatibility with weird dependencies in gbrowse.
 Returns : A feature factory
 Args    : None
display_namecodeprevnextTop
 Title   : display_name
 Usage   : $id = $obj->display_name or $obj->display_name($newid);
 Function: Gets or sets the display id, also known as the common name of
           the Seq object.

           The semantics of this is that it is the most likely string
           to be used as an identifier of the sequence, and likely to
           have "human" readability.  The id is equivalent to the LOCUS
           field of the GenBank/EMBL databanks and the ID field of the
           Swissprot/sptrembl database. In fasta format, the >(\S+) is
           presumed to be the id, though some people overload the id
           to embed other information. Bioperl does not use any
           embedded information in the ID field, and people are
           encouraged to use other mechanisms (accession field for
           example, or extending the sequence object) to solve this.

           Notice that $seq->id() maps to this function, mainly for
           legacy/convenience issues.
 Returns : A string
 Args    : None or a new id
accession_numbercodeprevnextTop
 Title   : accession_number
 Usage   : $unique_biological_key = $obj->accession_number;
 Function: Returns the unique biological id for a sequence, commonly
           called the accession_number. For sequences from established
           databases, the implementors should try to use the correct
           accession number. Notice that primary_id() provides the
           unique id for the implemetation, allowing multiple objects
           to have the same accession number in a particular implementation.

           For sequences with no accession number, this method should return
           "unknown".
 Returns : A string
 Args    : None
alphabetcodeprevnextTop
 Title   : alphabet
 Usage   : if( $obj->alphabet eq 'dna' ) { /Do Something/ }
 Function: Returns the type of sequence being one of
           'dna', 'rna' or 'protein'. This is case sensitive.

           This is not called  because this would cause
           upgrade problems from the 0.5 and earlier Seq objects.

 Returns : a string either 'dna','rna','protein'. NB - the object must
           make a call of the type - if there is no type specified it
           has to guess.
 Args    : none
 Status  : Virtual
desccodeprevnextTop
 Title   : desc
 Usage   : $seqobj->desc($string) or $seqobj->desc()
 Function: Sets or gets the description of the sequence
 Example :
 Returns : The description
 Args    : The description or none
locationcodeprevnextTop
 Title   : location
 Usage   : my $location = $seqfeature->location()
 Function: returns a location object suitable for identifying location
	   of feature on sequence or parent feature
 Returns : Bio::LocationI object
 Args    : none
Methods code
primary_seqdescriptionprevnextTop
sub primary_seq {
 return $_[0]
}
annotationdescriptionprevnextTop
sub annotation {
     my ($obj,$value) = @_;
    if( defined $value ) {
	$obj->throw("object of class ".ref($value)." does not implement ".
		    "Bio::AnnotationCollectionI. Too bad.")
	    unless $value->isa("Bio::AnnotationCollectionI");
	$obj->{'_annotation'} = $value;
    } elsif( ! defined $obj->{'_annotation'}) {
	$obj->{'_annotation'} = new Bio::Annotation::Collection;
    }
    return $obj->{'_annotation'};
}
speciesdescriptionprevnextTop
sub species {
    my ($self, $species) = @_;
    if ($species) {
        $self->{'species'} = $species;
    } else {
        return $self->{'species'};
    }
}
feature_countdescriptionprevnextTop
sub feature_count {
 return scalar @{shift->{segments} || []}
}
targetdescriptionprevnextTop
sub target {
 return;
}
hitdescriptionprevnextTop
sub hit {
 return;
}
newdescriptionprevnextTop
sub new {
  my $class= shift;
  $class = ref($class) if ref $class;
  my %arg = @_;

  my $self = bless {},$class;

  $arg{-strand} ||= 0;
  if ($arg{-strand} =~ /^[\+\-\.]$/){
	$arg{-strand} = "+" && $self->{strand} ='1';
	$arg{-strand} = "-" && $self->{strand} = '-1';
	$arg{-strand} = "." && $self->{strand} = '0';
  } else {
	  $self->{strand}  = $arg{-strand} ? ($arg{-strand} >= 0 ? +1 : -1) : 0;
  }
  $self->{name}    = $arg{-name}   || $arg{-seqname} || $arg{-display_id} 
    || $arg{-display_name} || $arg{-id} || $arg{-primary_id};
  $self->{type}    = $arg{-type}   || 'feature';
  $self->{subtype} = $arg{-subtype} if exists $arg{-subtype};
  $self->{source}  = $arg{-source} || $arg{-source_tag} || '';
  $self->{score}   = $arg{-score}   if exists $arg{-score};
  $self->{start}   = $arg{-start};
  $self->{stop}    = $arg{-end} || $arg{-stop};
  $self->{ref}     = $arg{-ref};
  for my $option (qw(class url seq phase desc attributes factory configurator)) {
    $self->{$option} = $arg{"-$option"} if exists $arg{"-$option"};
  }

  # fix start, stop
if (defined $self->{stop} && defined $self->{start} && $self->{stop} < $self->{start}) { @{$self}{'start','stop'} = @{$self}{'stop','start'}; $self->{strand} *= -1; } my @segments; if (my $s = $arg{-segments}) { $self->add_segment(@$s); } $self;
}
add_segmentdescriptionprevnextTop
sub add_segment {
  my $self        = shift;
  my $type = $self->{subtype} || $self->{type};
  $self->{segments} ||= [];
  my $ref   = $self->seq_id;
  my $name  = $self->name;
  my $class = $self->class;

  my @segments = @{$self->{segments}};

  for my $seg (@_) {
    if (ref($seg) eq 'ARRAY') {
      my ($start,$stop) = @{$seg};
      next unless defined $start && defined $stop;  # fixes an obscure bug somewhere above us
my $strand = $self->{strand}; if ($start > $stop) { ($start,$stop) = ($stop,$start); $strand = -1; } push @segments,$self->new(-start => $start, -stop => $stop, -strand => $strand, -ref => $ref, -type => $type, -name => $name, -class => $class); } else { push @segments,$seg; } } if (@segments) { local $^W = 0; # some warning of an uninitialized variable...
$self->{segments} = [ sort {$a->start <=> $b->start } @segments ]; $self->{start} = $self->{segments}[0]->start; ($self->{stop}) = sort { $b <=> $a } map { $_->end } @segments; }
}
segmentsdescriptionprevnextTop
sub segments {
  my $self = shift;
  my $s = $self->{segments} or return wantarray ? () : 0;
  @$s;
}
scoredescriptionprevnextTop
sub score {
  my $self = shift;
  my $d = $self->{score};
  $self->{score} = shift if @_;
  $d;
}
primary_tagdescriptionprevnextTop
sub primary_tag {
 shift->{type}
}
namedescriptionprevnextTop
sub name {
  my $self = shift;
  my $d    = $self->{name};
  $self->{name} = shift if @_;
  $d;
}
seq_iddescriptionprevnextTop
sub seq_id {
 shift->ref()
}
refdescriptionprevnextTop
sub ref {
  my $self = shift;
  my $d = $self->{ref};
  $self->{ref} = shift if @_;
  $d;
}
startdescriptionprevnextTop
sub start {
  my $self = shift;
  my $d = $self->{start};
  $self->{start} = shift if @_;
  $d;
}
enddescriptionprevnextTop
sub end {
  my $self = shift;
  my $d = $self->{stop};
  $self->{stop} = shift if @_;
  $d;
}
stranddescriptionprevnextTop
sub strand {
  my $self = shift;
  my $d = $self->{strand};
  $self->{strand} = shift if @_;
  $d;
}
lengthdescriptionprevnextTop
sub length {
  my $self = shift;
  return $self->end - $self->start + 1;
}
seqdescriptionprevnextTop
sub seq {
  my $self = shift;
  my $dna =  exists $self->{seq} ? $self->{seq} : '';
  # $dna .= 'n' x ($self->length - CORE::length($dna));
return $dna;
}
factorydescriptionprevnextTop
sub factory {
  my $self = shift;
  my $d = $self->{factory};
  $self->{factory} = shift if @_;
  $d;
}
display_namedescriptionprevnextTop
sub display_name {
 shift->name
}
accession_numberdescriptionprevnextTop
sub accession_number {
    return 'unknown';
}
alphabetdescriptionprevnextTop
sub alphabet {
    return 'dna'; # no way this will be anything other than dna!
}
descdescriptionprevnextTop
sub desc {
  my $self = shift;
  my $d    = $self->{desc};
  $self->{desc} = shift if @_;
  $d;
}
notesdescriptionprevnextTop
sub notes {
  return shift->desc;
}
lowdescriptionprevnextTop
sub low {
  my $self = shift;
  return $self->start < $self->end ? $self->start : $self->end;
}
highdescriptionprevnextTop
sub high {
  my $self = shift;
  return $self->start > $self->end ? $self->start : $self->end;
}
locationdescriptionprevnextTop
sub location {
   my $self = shift;
   require Bio::Location::Split unless Bio::Location::Split->can('new');
   my $location;
   if (my @segments = $self->segments) {
       $location = Bio::Location::Split->new();
       foreach (@segments) {
	 $location->add_sub_Location($_);
       }
   } else {
       $location = $self;
   }
   $location;
}
coordinate_policydescriptionprevnextTop
sub coordinate_policy {
   require Bio::Location::WidestCoordPolicy unless Bio::Location::WidestCoordPolicy->can('new');
   return Bio::Location::WidestCoordPolicy->new();
}
min_startdescriptionprevnextTop
sub min_start {
 shift->low
}
max_startdescriptionprevnextTop
sub max_start {
 shift->low
}
min_enddescriptionprevnextTop
sub min_end {
 shift->high
}
max_enddescriptionprevnextTop
sub max_end {
 shift->high
}
start_pos_typedescriptionprevnextTop
sub start_pos_type {
 'EXACT'
}
end_pos_typedescriptionprevnextTop
sub end_pos_type {
 'EXACT'
}
to_FTstringdescriptionprevnextTop
sub to_FTstring {
  my $self = shift;
  my $low  = $self->min_start;
  my $high = $self->max_end;
  return "$low..$high";
}
phasedescriptionprevnextTop
sub phase {
 shift->{phase}
}
classdescriptionprevnextTop
sub class {
  my $self = shift;
  my $d = $self->{class};
  $self->{class} = shift if @_;
  return defined($d) ? $d : ucfirst $self->method;
}
gff_stringdescriptionprevnextTop
sub gff_string {
  my $self    = shift;
  my $recurse = shift;

  my $name  = $self->name;
  my $class = $self->class;
  my $group = "$class $name" if $name;
  my $strand = ('-','.','+')[$self->strand+1];
  my $string;
  $string .= join("\t",$self->ref||'.',$self->source||'.',$self->method||'.',
                       $self->start||'.',$self->stop||'.',
                       $self->score||'.',$strand||'.',$self->phase||'.',
                       $group||'');
  $string .= "\n";
  if ($recurse) {
    foreach ($self->sub_SeqFeature) {
      $string .= $_->gff_string($recurse);
    }
  }
  $string;
}
gff3_stringdescriptionprevnextTop
sub gff3_string {
  my $self              = shift;
  my ($recurse,$parent) = @_;

  my $name  = $self->name;
  my $class = $self->class;
  my $group = $self->format_attributes($parent);
  my $strand = ('-','.','+')[$self->strand+1];
  my $string;
  $string .= join("\t",$self->ref||'.',$self->source||'.',$self->method||'.',
                       $self->start||'.',$self->stop||'.',
                       $self->score||'.',$strand||'.',$self->phase||'.',
                       $group||'');
  $string .= "\n";
  if ($recurse) {
    foreach ($self->sub_SeqFeature) {
      $string .= $_->gff3_string(1,$self->name);
    }
  }
  $string;
}
dbdescriptionprevnextTop
sub db {
 return
}
source_tagdescriptionprevnextTop
sub source_tag {
  my $self = shift;
  my $d = $self->{source};
  $self->{source} = shift if @_;
  $d;
}
intronsdescriptionprevnextTop
sub introns {
  my $self = shift;
  return;
}
has_tagdescriptionprevnextTop
sub has_tag {
}
configuratordescriptionprevnextTop
sub configurator {
  my $self = shift;
  my $d = $self->{configurator};
  $self->{configurator} = shift if @_;
  $d;
}
urldescriptionprevnextTop
sub url {
  my $self = shift;
  my $d = $self->{url};
  $self->{url} = shift if @_;
  $d;
}
make_linkdescriptionprevnextTop
sub make_link {
  my $self = shift;

  if (my $url = $self->url) {
    return $url;
  }

  elsif (my $configurator = $self->configurator) {
    return $configurator->make_link($self);
  }

  else {
    return;
  }
}
escapedescriptionprevnextTop
sub escape {
  my $toencode = shift;
  $toencode    =~ s/([^a-zA-Z0-9_. :?^*\(\)\[\]@!-])/uc sprintf("%%%02x",ord($1))/eg;
  $toencode    =~ tr/ /+/;
  $toencode;
}
all_tagsdescriptionprevnextTop
sub all_tags {
  my $self = shift;
  return keys %{$self->{attributes}};
}
each_tag_valuedescriptionprevnextTop
sub each_tag_value {
  my $self = shift;
  my $tag  = shift;
  my $value = $self->{attributes}{$tag} or return;
  return CORE::ref $value ? @{$self->{attributes}{$tag}}
                          : $self->{attributes}{$tag};
}
format_attributesdescriptionprevnextTop
sub format_attributes {
  my $self   = shift;
  my $parent = shift;
  my @tags = $self->all_tags;
  my @result;
  for my $t (@tags) {
    my @values = $self->each_tag_value($t);
    push @result,join '=',escape($t),escape($_) foreach @values;
  }
  push @result,"ID=".escape($self->name) if defined $self->name;
  push @result,"Parent=".escape($parent) if defined $parent;
  return join ';',@result;
}
DESTROYdescriptionprevnextTop
sub DESTROY {
}
General documentation
SEE ALSOTop
Bio::Graphics::Panel,Bio::Graphics::Glyph,
GD
AUTHORTop
Lincoln Stein <lstein@cshl.org>.
Copyright (c) 2001 Cold Spring Harbor Laboratory
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. See DISCLAIMER.txt for
disclaimers of warranty.