3 Bio::DB::GFF::RelSegment -- Sequence segment with relative coordinate support
11 Bio::DB::GFF::RelSegment is a stretch of sequence that can handle
12 relative coordinate addressing. It inherits from
13 Bio::DB::GFF::Segment, and is the base class for
14 Bio::DB::GFF::Feature.
16 In addition to the source sequence, a relative segment has a
17 "reference sequence", which is used as the basis for its coordinate
18 system. The reference sequence can be changed at will, allowing you
19 freedom to change the "frame of reference" for features contained
20 within the segment. For example, by setting a segment's reference
21 sequence to the beginning of a gene, you can view all other features
22 in gene-relative coordinates.
24 The reference sequence and the source sequence must be on the same
25 physical stretch of DNA, naturally. However, they do not have to be
26 on the same strand. The strandedness of the reference sequence
27 determines whether coordinates increase to the right or the left.
29 Generally, you will not create or manipulate Bio::DB::GFF::RelSeg0ment
30 objects directly, but use those that are returned by the Bio::DB::GFF
35 To understand how relative coordinates work, consider the following
36 example from the C. elegans database. First we create the appropriate
37 GFF accessor object (the factory):
39 my $db = Bio::DB::GFF->new(-dsn => 'dbi:mysql:elegans',
40 -adaptor=>'dbi:mysqlopt');
42 Now we fetch out a segment based on cosmid clone ZK909:
44 my $seg = $db->segment('ZK909');
46 If we call the segment's refseq() method, we see that the base of the
47 coordinate system is the sequence "ZK154", and that its start and
48 stop positions are 1 and the length of the cosmid:
53 print $seg->start,' - ',$seg->stop;
56 As a convenience, the "" operator is overloaded in this class, to give
57 the reference sequence, and start and stop positions:
62 Internally, Bio::DB::GFF::RelSegment has looked up the absolute
63 coordinates of this segment and maintains the source sequence and the
64 absolute coordinates relative to the source sequence. We can see this
65 information using sourceseq() (inherited from Bio::DB::GFF::Segment)
66 and the abs_start() and abs_end() methods:
68 print $seg->sourceseq;
71 print $seg->abs_start,' - ',$seg->abs_end;
72 => 14839545 - 14873326
74 We can also put the segment into absolute mode, so that it behaves
75 like Bio::DB::Segment, and always represents coordinates on the source
76 sequence. This is done by passing a true value to the absolute()
81 => CHROMOSOME_I:14839545,14873326
83 We can change the reference sequence at any time. One way is to call
84 the segment's ref() method, giving it the ID (and optionally the
85 class) of another landmark on the genome. For example, if we know
86 that cosmid ZK337 is adjacent to ZK909, then we can view ZK909 in
87 ZK337-relative coordinates:
89 $seg->refseq('ZK337');
93 We can call the segment's features() method in order to get the list
94 of contigs that overlap this segment (in the C. elegans database,
95 contigs have feature type "Sequence:Link"):
97 @links = $seg->features('Sequence:Link');
99 We can now set the reference sequence to the first of these contigs like so:
101 $seg->refseq($links[0]);
103 => Sequence:Link(LINK_Y95D11A):3997326,4031107
107 package Bio
::DB
::GFF
::RelSegment
;
111 use Bio
::DB
::GFF
::Feature
;
112 use Bio
::DB
::GFF
::Util
::Rearrange
;
115 use base
qw(Bio::DB::GFF::Segment);
117 use overload
'""' => 'asString',
118 'bool' => sub { overload
::StrVal
(shift) },
123 The remainder of this document describes the API for
124 Bio::DB::GFF::Segment.
131 Usage : $s = Bio::DB::GFF::RelSegment->new(@args)
132 Function: create a new relative segment
133 Returns : a new Bio::DB::GFF::RelSegment object
137 This method creates a new Bio::DB::GFF::RelSegment object. Generally
138 this is called automatically by the Bio::DB::GFF module and
141 This function uses a named-argument style:
143 -factory a Bio::DB::GFF::Adaptor to use for database access
144 -seq ID of the source sequence
145 -class class of the source sequence
146 -start start of the desired segment relative to source sequence
147 -stop stop of the desired segment relative to source sequence
148 -ref ID of the reference sequence
149 -refclass class of the reference sequence
150 -offset 0-based offset from source sequence to start of segment
151 -length length of desired segment
152 -absolute, -force_absolute
153 use absolute coordinates, rather than coordinates relative
154 to the start of self or the reference sequence
156 The -seq argument accepts the ID of any landmark in the database. The
157 stored source sequence becomes whatever the GFF file indicates is the
158 proper sequence for this landmark. A class of "Sequence" is assumed
159 unless otherwise specified in the -class argument.
161 If the argument to -seq is a Bio::GFF::Featname object (such as
162 returned by the group() method), then the class is taken from that.
164 The optional -start and -stop arguments specify the end points for the
165 retrieved segment. For those who do not like 1-based indexing,
166 -offset and -length are provided. If both -start/-stop and
167 -offset/-length are provided, the latter overrides the former.
168 Generally it is not a good idea to mix metaphors.
170 -ref and -refclass together indicate a sequence to be used for
171 relative coordinates. If not provided, the source sequence indicated
172 by -seq is used as the reference sequence. If the argument to -ref is
173 a Bio::GFF::Featname object (such as returned by the group() method),
174 then the class is taken from that.
176 -force_absolute should be used if you wish to skip the lookup of the
177 absolute position of the source sequence that ordinarily occurs when
178 you create a relative segment. In this case, the source sequence must
179 be a sequence that has been specified as the "source" in the GFF file.
183 # Create a new Bio::DB::GFF::RelSegment Object
185 # -factory => factory and DBI interface
186 # -seq => $sequence_name
187 # -start => $start_relative_to_sequence
188 # -stop => $stop_relative_to_sequence
189 # -ref => $sequence which establishes coordinate system
190 # -offset => 0-based offset relative to sequence
191 # -length => length of segment
192 # -nocheck => turn off checking, force segment to be constructed
193 # -absolute => use absolute coordinate addressing
197 my ($factory,$name,$start,$stop,$refseq,$class,$refclass,$offset,$length,$force_absolute,$nocheck) =
200 [qw(NAME SEQ SEQUENCE SOURCESEQ)],
203 [qw(REFSEQ REF REFNAME)],
204 [qw(CLASS SEQCLASS)],
212 $package = ref $package if ref $package;
213 $factory or $package->throw("new(): provide a -factory argument");
215 # to allow people to use segments as sources
216 if (ref($name) && $name->isa('Bio::DB::GFF::Segment')) {
217 $start = 1 unless defined $start;
218 $stop = $name->length unless defined $stop;
219 return $name->subseq($start,$stop);
224 # support for Featname objects
225 if (ref($name) && $name->can('class')) {
226 $class = $name->class;
230 # if the class of the landmark is not specified then default to 'Sequence'
231 $class ||= eval{$factory->default_class} || 'Sequence';
233 # confirm that indicated sequence is actually in the database!
236 # abscoords() will now return an array ref, each element of which is
237 # ($absref,$absclass,$absstart,$absstop,$absstrand)
244 # if ($force_absolute && defined($start)) { # absolute position is given to us
245 # @abscoords = ([$name,$class,$start,$stop,'+']);
247 my $result = $factory->abscoords($name,$class,$force_absolute ?
$name : ()) or return;
248 @abscoords = @
$result;
251 foreach (@abscoords) {
252 my ($absref,$absclass,$absstart,$absstop,$absstrand,$sname) = @
$_;
253 $sname = $name unless defined $sname;
254 my ($this_start,$this_stop,$this_length) = ($start,$stop,$length);
256 # partially fill in object
257 my $self = bless { factory
=> $factory },$package;
261 if ($absstart > $absstop) { # AAARGH! DATA FORMAT ERROR! FIX.
262 ($absstart,$absstop) = ($absstop,$absstart);
263 $absstrand = $absstrand eq '+' ?
'-' : '+';
266 # an explicit length overrides start and stop
267 if (defined $offset) {
268 warn "new(): bad idea to call new() with both a start and an offset"
269 if defined $this_start;
270 $this_start = $offset+1;
272 if (defined $this_length) {
273 warn "new(): bad idea to call new() with both a stop and a length"
274 if defined $this_stop;
275 $this_stop = $this_start + $length - 1;
278 # this allows a SQL optimization way down deep
279 $self->{whole
}++ if $absref eq $sname and !defined($this_start) and !defined($this_stop);
281 $this_start = 1 if !defined $this_start;
282 $this_stop = $absstop-$absstart+1 if !defined $this_stop;
283 $this_length = $this_stop - $this_start + 1;
285 # now offset to correct subsegment based on desired start and stop
286 if ($force_absolute) {
287 # ($this_start,$this_stop) = ($absstart,$absstop);
289 } elsif ($absstrand eq '+') {
290 $this_start = $absstart + $this_start - 1;
291 $this_stop = $this_start + $this_length - 1;
293 $this_start = $absstop - ($this_start - 1);
294 $this_stop = $absstop - ($this_stop - 1);
297 # handle truncation in either direction
298 # This only happens if the segment runs off the end of
299 # the reference sequence
300 if ($factory->strict_bounds_checking &&
301 (($this_start < $absstart) || ($this_stop > $absstop))) {
302 # return empty if we are completely off the end of the ref se
303 next unless $this_start<=$absstop && $this_stop>=$absstart;
304 if (my $a = $factory->abscoords($absref,'Sequence')) {
305 my $refstart = $a->[0][2];
306 my $refstop = $a->[0][3];
307 if ($this_start < $refstart) {
308 $this_start = $refstart;
309 $self->{truncated
}{start
}++;
311 if ($this_stop > $refstop) {
312 $this_stop = $absstop;
313 $self->{truncated
}{stop
}++;
318 @
{$self}{qw(sourceseq start stop strand class)}
319 = ($absref,$this_start,$this_stop,$absstrand,$absclass);
321 # handle reference sequence
322 if (defined $refseq) {
323 $refclass = $refseq->class if $refseq->can('class');
324 $refclass ||= 'Sequence';
325 my ($refref,$refstart,$refstop,$refstrand) = $factory->abscoords($refseq,$refclass);
326 unless ($refref eq $absref) {
327 $self->error("reference sequence is on $refref but source sequence is on $absref");
330 $refstart = $refstop if $refstrand eq '-';
331 @
{$self}{qw(ref refstart refstrand)} = ($refseq,$refstart,$refstrand);
333 $absstart = $absstop if $absstrand eq '-';
334 @
{$self}{qw(ref refstart refstrand)} = ($sname,$absstart,$absstrand);
336 push @object_results,$self;
339 return wantarray ?
@object_results : $object_results[0];
343 # start, stop, length
346 return $self->strand < 0 ?
$self->{stop
} : $self->{start
} if $self->absolute;
347 $self->_abs2rel($self->{start
});
351 return $self->strand < 0 ?
$self->{start
} : $self->{stop
} if $self->absolute;
352 $self->_abs2rel($self->{stop
});
358 return unless defined $self->abs_end;
359 abs($self->abs_end - $self->abs_start) + 1;
364 if ($self->absolute) {
365 my ($a,$b) = ($self->SUPER::abs_start
,$self->SUPER::abs_end
);
366 return ($a<$b) ?
$a : $b;
369 return $self->SUPER::abs_start
(@_);
374 if ($self->absolute) {
375 my ($a,$b) = ($self->SUPER::abs_start
,$self->SUPER::abs_end
);
376 return ($a>$b) ?
$a : $b;
380 return $self->SUPER::abs_end
(@_);
384 *abs_stop
= \
&abs_end
;
389 Usage : $ref = $s->refseq([$newseq] [,$newseqclass])
390 Function: get/set reference sequence
391 Returns : current reference sequence
392 Args : new reference sequence and class (optional)
395 This method will get or set the reference sequence. Called with no
396 arguments, it returns the current reference sequence. Called with
397 either a sequence ID and class, a Bio::DB::GFF::Segment object (or
398 subclass) or a Bio::DB::GFF::Featname object, it will set the current
399 reference sequence and return the previous one.
401 The method will generate an exception if you attempt to set the
402 reference sequence to a sequence that isn't contained in the database,
403 or one that has a different source sequence from the segment.
410 my $g = $self->{ref};
412 my ($newref,$newclass);
418 $newclass = 'Sequence';
421 defined $newref or $self->throw('refseq() called with an undef reference sequence');
423 # support for Featname objects
424 $newclass = $newref->class if ref($newref) && $newref->can('class');
426 # $self->throw("Cannot define a segment's reference sequence in terms of itself!")
427 # if ref($newref) and overload::StrVal($newref) eq overload::StrVal($self);
429 my ($refsource,undef,$refstart,$refstop,$refstrand);
430 if ($newref->isa('Bio::DB::GFF::RelSegment')) {
431 ($refsource,undef,$refstart,$refstop,$refstrand) =
432 ($newref->sourceseq,undef,$newref->abs_start,$newref->abs_end,$newref->abs_strand >= 0 ?
'+' : '-');
434 my $coords = $self->factory->abscoords($newref,$newclass);
435 foreach (@
$coords) { # find the appropriate one
436 ($refsource,undef,$refstart,$refstop,$refstrand) = @
$_;
437 last if $refsource eq $self->{sourceseq
};
441 $self->throw("can't set reference sequence: $newref and $self are on different sequence segments")
442 unless $refsource eq $self->{sourceseq
};
444 @
{$self}{qw(ref refstart refstrand)} = ($newref,$refstart,$refstrand);
447 return $self->absolute ?
$self->sourceseq : $g;
455 Function: the absolute lowest coordinate of the segment
460 This is for GadFly compatibility, and returns the low coordinate in
461 absolute coordinates;
467 my ($a,$b) = ($self->abs_start,$self->abs_end);
468 return ($a<$b) ?
$a : $b;
475 Function: the absolute highest coordinate of the segment
480 This is for GadFly compatibility, and returns the high coordinate in
481 absolute coordinates;
487 my ($a,$b) = ($self->abs_start,$self->abs_end);
488 return ($a>$b) ?
$a : $b;
496 Function: human-readable representation of the segment
501 This method will return a human-readable representation of the
502 segment. It is the overloaded method call for the "" operator.
504 Currently the format is:
512 return $self->SUPER::asString
if $self->absolute;
513 my $label = $self->{ref};
514 my $start = $self->start || '';
515 my $stop = $self->stop || '';
516 if (ref($label) && overload
::StrVal
($self) eq overload
::StrVal
($label->ref)) {
517 $label = $self->abs_ref;
518 $start = $self->abs_start;
519 $stop = $self->abs_end;
521 return "$label:$start,$stop";
527 Usage : Alias for asString()
531 sub name
{ shift->asString }
536 Usage : $abs = $s->absolute([$abs])
537 Function: get/set absolute coordinates
538 Returns : a boolean flag
539 Args : new setting for flag (optional)
542 Called with a boolean flag, this method controls whether to display
543 relative coordinates (relative to the reference sequence) or absolute
544 coordinates (relative to the source sequence). It will return the
545 previous value of the setting.
551 my $g = $self->{absolute
};
552 $self->{absolute
} = shift if @_;
559 Usage : @features = $s->features(@args)
560 Function: get features that overlap this segment
561 Returns : a list of Bio::DB::GFF::Feature objects
565 This method will find all features that overlap the segment and return
566 a list of Bio::DB::GFF::Feature objects. The features will use
567 coordinates relative to the reference sequence in effect at the time
568 that features() was called.
570 The returned list can be limited to certain types of feature by
571 filtering on their method and/or source. In addition, it is possible
572 to obtain an iterator that will step through a large number of
573 features sequentially.
575 Arguments can be provided positionally or using the named arguments
576 format. In the former case, the arguments are a list of feature types
577 in the format "method:source". Either method or source can be
578 omitted, in which case the missing component is treated as a wildcard.
579 If no colon is present, then the type is treated as a method name.
580 Multiple arguments are ORed together.
584 @f = $s->features('exon:curated'); # all curated exons
585 @f = $s->features('exon:curated','intron'); # curated exons and all introns
586 @f = $s->features('similarity:.*EST.*'); # all similarities
587 # having something to do
590 The named parameter form gives you control over a few options:
592 -types an array reference to type names in the format
595 -merge Whether to apply aggregators to the generated features (default yes)
597 -rare Turn on an optimization suitable for a relatively rare feature type,
598 where it will be faster to filter by feature type first
599 and then by position, rather than vice versa.
601 -attributes a hashref containing a set of attributes to match
603 -range_type One of 'overlapping', 'contains', or 'contained_in'
605 -iterator Whether to return an iterator across the features.
607 -binsize A true value will create a set of artificial features whose
608 start and stop positions indicate bins of the given size, and
609 whose scores are the number of features in the bin. The
610 class and method of the feature will be set to "bin",
611 its source to "method:source", and its group to "bin:method:source".
612 This is a handy way of generating histograms of feature density.
614 -merge is a boolean flag that controls whether the adaptor's
615 aggregators wll be applied to the features returned by this method.
617 If -iterator is true, then the method returns a single scalar value
618 consisting of a Bio::SeqIO object. You can call next_seq() repeatedly
619 on this object to fetch each of the features in turn. If iterator is
620 false or absent, then all the features are returned as a list.
622 The -attributes argument is a hashref containing one or more
623 attributes to match against:
625 -attributes => { Gene => 'abc-1',
626 Note => 'confirmed' }
628 Attribute matching is simple string matching, and multiple attributes
635 # return all features that overlap with this segment;
636 # optionally modified by a list of types to filter on
639 my @args = $self->_process_feature_args(@_);
640 return $self->factory->overlapping_features(@args);
643 =head2 get_SeqFeatures
645 Title : get_SeqFeatures
647 Function: returns the top level sequence features
648 Returns : L<Bio::SeqFeatureI> objects
651 Segments do not ordinarily return any subfeatures.
655 # A SEGMENT DOES NOT HAVE SUBFEATURES!
656 sub get_SeqFeatures
{ return }
660 Title : feature_count
661 Usage : $seq->feature_count()
662 Function: Return the number of SeqFeatures attached to a sequence
663 Returns : integer representing the number of SeqFeatures
666 This method comes through extension of Bio::FeatureHolderI. See
667 L<Bio::FeatureHolderI> for more information.
674 my %type_counts = $self->types(-enumerate
=>1);
675 map { $ct += $_ } values %type_counts;
679 =head2 get_feature_stream
682 Usage : $stream = $s->get_feature_stream(@args)
683 Function: get a stream of features that overlap this segment
684 Returns : a Bio::SeqIO::Stream-compliant stream
688 This is the same as features(), but returns a stream. Use like this:
690 $stream = $s->get_feature_stream('exon');
691 while (my $exon = $stream->next_seq) {
692 print $exon->start,"\n";
697 sub get_feature_stream
{
699 my @args = defined($_[0]) && $_[0] =~ /^-/ ?
(@_,-iterator
=>1) : (-types
=>\
@_,-iterator
=>1);
700 $self->features(@args);
703 =head2 get_seq_stream
705 Title : get_seq_stream
706 Usage : $stream = $s->get_seq_stream(@args)
707 Function: get a stream of features that overlap this segment
708 Returns : a Bio::SeqIO::Stream-compliant stream
712 This is the same as feature_stream(), and is provided for Bioperl
713 compatibility. Use like this:
715 $stream = $s->get_seq_stream('exon');
716 while (my $exon = $stream->next_seq) {
717 print $exon->start,"\n";
722 *get_seq_stream
= \
&get_feature_stream
;
725 =head2 overlapping_features
727 Title : overlapping_features
728 Usage : @features = $s->overlapping_features(@args)
729 Function: get features that overlap this segment
730 Returns : a list of Bio::DB::GFF::Feature objects
731 Args : see features()
734 This is an alias for the features() method, and takes the same
739 *overlapping_features
= \
&features
;
741 =head2 contained_features
743 Title : contained_features
744 Usage : @features = $s->contained_features(@args)
745 Function: get features that are contained by this segment
746 Returns : a list of Bio::DB::GFF::Feature objects
747 Args : see features()
750 This is identical in behavior to features() except that it returns
751 only those features that are completely contained within the segment,
752 rather than any that overlap.
756 # return all features completely contained within this segment
757 sub contained_features
{
759 local $self->{whole
} = 0;
760 my @args = $self->_process_feature_args(@_);
761 return $self->factory->contained_features(@args);
764 # *contains = \&contained_features;
769 Usage : @features = $s->contained_in(@args)
770 Function: get features that contain this segment
771 Returns : a list of Bio::DB::GFF::Feature objects
772 Args : see features()
775 This is identical in behavior to features() except that it returns
776 only those features that completely contain the segment.
780 # return all features completely contained within this segment
783 local $self->{whole
} = 0;
784 my @args = $self->_process_feature_args(@_);
785 return $self->factory->contained_in(@args);
791 Usage : $db->delete(@args)
792 Function: delete features
793 Returns : count of features deleted -- if available
794 Args : numerous, see below
797 This method deletes all features that overlap the specified region or
798 are of a particular type. If no arguments are provided and the -force
799 argument is true, then deletes ALL features.
803 -type,-types Either a single scalar type to be deleted, or an
804 reference to an array of types.
806 -range_type Control the range type of the deletion. One of "overlaps" (default)
807 "contains" or "contained_in"
811 $segment->delete(-type=>['intron','repeat:repeatMasker']); # remove all introns & repeats
812 $segment->delete(-type=>['intron','repeat:repeatMasker']
813 -range_type => 'contains'); # remove all introns & repeats
814 # strictly contained in segment
816 IMPORTANT NOTE: This method only deletes features. It does *NOT*
817 delete the names of groups that contain the deleted features. Group
818 IDs will be reused if you later load a feature with the same group
819 name as one that was previously deleted.
821 NOTE ON FEATURE COUNTS: The DBI-based versions of this call return the
822 result code from the SQL DELETE operation. Some dbd drivers return the
823 count of rows deleted, while others return 0E0. Caveat emptor.
827 # return all features completely contained within this segment
830 my ($type,$range_type) =
831 rearrange
([[qw(TYPE TYPES)],'RANGE_TYPE'],@_);
832 my $types = $self->factory->parse_types($type); # parse out list of types
833 $range_type ||= 'overlaps';
834 return $self->factory->_delete({
837 range_type
=> $range_type
841 =head2 _process_feature_args
843 Title : _process_feature_args
844 Usage : @args = $s->_process_feature_args(@args)
845 Function: preprocess arguments passed to features,
846 contained_features, and overlapping_features
847 Returns : a list of parsed arguents
851 This is an internal method that is used to check and format the
852 arguments to features() before passing them on to the adaptor.
856 sub _process_feature_args
{
859 my ($ref,$class,$start,$stop,$strand,$whole)
860 = @
{$self}{qw(sourceseq class start stop strand whole)};
862 ($start,$stop) = ($stop,$start) if defined $strand && $strand eq '-';
864 my @args = (-ref=>$ref,-class=>$class);
866 # indicating that we are fetching the whole segment allows certain
868 push @args,(-start
=>$start,-stop
=>$stop) unless $whole;
875 push @args,-types
=>\
@types;
878 push @args,-parent
=>$self;
885 Usage : @types = $s->types([-enumerate=>1])
886 Function: list feature types that overlap this segment
887 Returns : a list of Bio::DB::GFF::Typename objects or a hash
891 The types() method will return a list of Bio::DB::GFF::Typename
892 objects, each corresponding to a feature that overlaps the segment.
893 If the optional -enumerate parameter is set to a true value, then the
894 method will return a hash in which the keys are the type names and the
895 values are the number of times a feature of that type is present on
896 the segment. For example:
898 %count = $s->types(-enumerate=>1);
902 # wrapper for lower-level types() call.
905 my ($ref,$class,$start,$stop,$strand) = @
{$self}{qw(sourceseq class start stop strand)};
906 ($start,$stop) = ($stop,$start) if $strand eq '-';
909 if (@_ && $_[0] !~ /^-/) {
910 @args = (-type
=> \
@_)
914 $self->factory->types(-ref => $ref,
920 =head1 Internal Methods
922 The following are internal methods and should not be called directly.
924 =head2 new_from_segment
926 Title : new_from_segment
927 Usage : $s = $segment->new_from_segment(@args)
928 Function: create a new relative segment
929 Returns : a new Bio::DB::GFF::RelSegment object
933 This constructor is used internally by the subseq() method. It forces
934 the new segment into the Bio::DB::GFF::RelSegment package, regardless
935 of the package that it is called from. This causes subclass-specfic
936 information, such as feature types, to be dropped when a subsequence
941 sub new_from_segment
{
943 $package = ref $package if ref $package;
946 @
{$new}{qw(factory sourceseq start stop strand class ref refstart refstrand)}
947 = @
{$segment}{qw(factory sourceseq start stop strand class ref refstart refstrand)};
948 return bless $new,__PACKAGE__
;
954 Usage : @coords = $s->_abs2rel(@coords)
955 Function: convert absolute coordinates into relative coordinates
956 Returns : a list of relative coordinates
957 Args : a list of absolute coordinates
960 This is used internally to map from absolute to relative
961 coordinates. It does not take the offset of the reference sequence
962 into account, so please use abs2rel() instead.
969 return unless defined $_[0];
971 if ($self->absolute) {
974 my ($refstart,$refstrand) = @
{$self}{qw(refstart refstrand)};
975 @result = defined($refstrand) && $refstrand eq '-' ?
map { $refstart - $_ + 1 } @_
976 : map { $_ - $refstart + 1 } @_;
978 # if called with a single argument, caller will expect a single scalar reply
979 # not the size of the returned array!
980 return $result[0] if @result == 1 and !wantarray;
987 Usage : @coords = $s->rel2abs(@coords)
988 Function: convert relative coordinates into absolute coordinates
989 Returns : a list of absolute coordinates
990 Args : a list of relative coordinates
993 This function takes a list of positions in relative coordinates to the
994 segment, and converts them into absolute coordinates.
1002 if ($self->absolute) {
1005 my ($abs_start,$abs_strand) = ($self->abs_start,$self->abs_strand);
1006 @result = $abs_strand < 0 ?
map { $abs_start - $_ + 1 } @_
1007 : map { $_ + $abs_start - 1 } @_;
1009 # if called with a single argument, caller will expect a single scalar reply
1010 # not the size of the returned array!
1011 return $result[0] if @result == 1 and !wantarray;
1018 Usage : @rel_coords = $s->abs2rel(@abs_coords)
1019 Function: convert absolute coordinates into relative coordinates
1020 Returns : a list of relative coordinates
1021 Args : a list of absolute coordinates
1024 This function takes a list of positions in absolute coordinates
1025 and returns a list expressed in relative coordinates.
1033 if ($self->absolute) {
1036 my ($abs_start,$abs_strand) = ($self->abs_start,$self->abs_strand);
1037 @result = $abs_strand < 0 ?
map { $abs_start - $_ + 1 } @_
1038 : map { $_ - $abs_start + 1 } @_;
1040 # if called with a single argument, caller will expect a single scalar reply
1041 # not the size of the returned array!
1042 return $result[0] if @result == 1 and !wantarray;
1048 my $obj = $self->SUPER::subseq
(@_);
1049 bless $obj,__PACKAGE__
; # always bless into the generic RelSegment package
1054 if ($self->absolute) {
1055 return _to_strand
($self->{strand
});
1057 my $start = $self->start;
1058 my $stop = $self->stop;
1059 return 0 unless defined $start and defined $stop;
1060 return $stop <=> $start;
1065 return -1 if $s eq '-';
1066 return +1 if $s eq '+';
1070 =head2 Bio::RangeI Methods
1072 The following Bio::RangeI methods are supported:
1074 overlaps(), contains(), equals(),intersection(),union(),overlap_extent()
1081 unshift @ranges,$self if ref $self;
1082 $ranges[0]->isa('Bio::DB::GFF::RelSegment')
1083 or return $self->SUPER::intersection
(@_);
1085 my $ref = $ranges[0]->abs_ref;
1088 return unless $_->can('abs_ref');
1089 $ref eq $_->abs_ref or return;
1090 $low = $_->abs_low if !defined($low) or $low < $_->abs_low;
1091 $high = $_->abs_high if !defined($high) or $high > $_->abs_high;
1094 return unless $low < $high;
1095 return Bio
::DB
::GFF
::RelSegment
->new(-factory
=> $self->factory,
1104 my($other,$so) = @_;
1105 return $self->SUPER::overlaps
(@_) unless $other->isa('Bio::DB::GFF::RelSegment');
1106 return if $self->abs_ref ne $other->abs_ref;
1107 return if $self->abs_low > $other->abs_high;
1108 return if $self->abs_high < $other->abs_low;
1114 my($other,$so) = @_;
1115 return $self->SUPER::overlaps
(@_) unless $other->isa('Bio::DB::GFF::RelSegment');
1116 return if $self->abs_ref ne $other->abs_ref;
1117 return unless $self->abs_low <= $other->abs_low;
1118 return unless $self->abs_high >= $other->abs_high;
1125 unshift @ranges,$self if ref $self;
1126 $ranges[0]->isa('Bio::DB::GFF::RelSegment')
1127 or return $self->SUPER::union
(@_);
1129 my $ref = $ranges[0]->abs_ref;
1132 return unless $_->can('abs_ref');
1133 $ref eq $_->abs_ref or return;
1134 $low = $_->abs_low if !defined($low) or $low > $_->abs_low;
1135 $high = $_->abs_high if !defined($high) or $high < $_->abs_high;
1137 $self->new(-factory
=> $self->factory,
1152 Schemas need some work.
1160 Lincoln Stein E<lt>lstein@cshl.orgE<gt>.
1162 Copyright (c) 2001 Cold Spring Harbor Laboratory.
1164 This library is free software; you can redistribute it and/or modify
1165 it under the same terms as Perl itself.