File Coverage

Bio/Location/WidestCoordPolicy.pm
Criterion Covered Total %
statement 17 17 100.0
branch 4 4 100.0
condition n/a
subroutine 5 5 100.0
pod 3 3 100.0
total 29 29 100.0


line stmt bran cond sub pod time code
1             #
2             # BioPerl module for Bio::Location::WidestCoordPolicy
3             #
4             # Please direct questions and support issues to
5             #
6             # Cared for by Hilmar Lapp
7             # and Jason Stajich
8             #
9             # Copyright Hilmar Lapp, Jason Stajich
10             #
11             # You may distribute this module under the same terms as perl itself
12             # POD documentation - main docs before the code
13              
14             =head1 NAME
15              
16             Bio::Location::WidestCoordPolicy - class implementing
17             Bio::Location::CoordinatePolicy as the widest possible and reasonable range
18              
19             =head1 SYNOPSIS
20              
21             See Bio::Location::CoordinatePolicyI
22              
23             =head1 DESCRIPTION
24              
25             CoordinatePolicyI implementing objects are used by Bio::LocationI
26             implementing objects to determine integer-valued coordinates when
27             asked for it.
28              
29             This class will compute the coordinates such that always the widest possible
30             range is returned, but by using some common sense. This means that e.g.
31             locations like "E5..100" (start before position 5) will return 5 as start
32             (returned values have to be positive integers).
33              
34             =head1 FEEDBACK
35              
36             User feedback is an integral part of the evolution of this and other
37             Bioperl modules. Send your comments and suggestions preferably to one
38             of the Bioperl mailing lists. Your participation is much appreciated.
39              
40             bioperl-l@bioperl.org - General discussion
41             http://bioperl.org/wiki/Mailing_lists - About the mailing lists
42              
43             =head2 Support
44              
45             Please direct usage questions or support issues to the mailing list:
46              
47             I
48              
49             rather than to the module maintainer directly. Many experienced and
50             reponsive experts will be able look at the problem and quickly
51             address it. Please include a thorough description of the problem
52             with code and data examples if at all possible.
53              
54             =head2 Reporting Bugs
55              
56             Report bugs to the Bioperl bug tracking system to help us keep track
57             the bugs and their resolution. Bug reports can be submitted via the
58             web:
59              
60             https://github.com/bioperl/bioperl-live/issues
61              
62             =head1 AUTHOR - Hilmar Lapp, Jason Stajich
63              
64             Email Ehlapp-at-gmx-dot-netE, Ejason-at-bioperl-dot-orgE
65              
66             =head1 APPENDIX
67              
68             The rest of the documentation details each of the object
69             methods. Internal methods are usually preceded with a _
70              
71             =cut
72              
73             # Let the code begin...
74              
75              
76             package Bio::Location::WidestCoordPolicy;
77 192     192   1040 use strict;
  192         322  
  192         5307  
78              
79              
80 192     192   848 use base qw(Bio::Root::Root Bio::Location::CoordinatePolicyI);
  192         447  
  192         52748  
81              
82             sub new {
83 194     194 1 732 my ($class, @args) = @_;
84 194         1602 my $self = $class->SUPER::new(@args);
85              
86 194         488 return $self;
87             }
88              
89              
90              
91             =head2 start
92              
93             Title : start
94             Usage : $start = $policy->start($location);
95             Function: Get the integer-valued start coordinate of the given location as
96             computed by this computation policy.
97             Returns : A positive integer number.
98             Args : A Bio::LocationI implementing object.
99              
100             =cut
101              
102             sub start {
103 39329     39329 1 52473 my ($self,$loc) = @_;
104              
105             # For performance reasons we don't check that it's indeed a Bio::LocationI
106             # object. Hopefully, Location-object programmers are smart enough.
107 39329         55862 my $pos = $loc->min_start();
108             # if min is not defined or equals 0 we resort to max
109 39329 100       63792 $pos = $loc->max_start() if(! $pos);
110 39329         73864 return $pos;
111             }
112              
113             =head2 end
114              
115             Title : end
116             Usage : $end = $policy->end($location);
117             Function: Get the integer-valued end coordinate of the given location as
118             computed by this computation policy.
119             Returns : A positive integer number.
120             Args : A Bio::LocationI implementing object.
121              
122             =cut
123              
124             sub end {
125 35590     35590 1 47992 my ($self,$loc) = @_;
126              
127             # For performance reasons we don't check that it's indeed a Bio::LocationI
128             # object. Hopefully, Location-object programmers are smart enough.
129 35590         48763 my $pos = $loc->max_end();
130             # if max is not defined or equals 0 we resort to min
131 35590 100       52153 $pos = $loc->min_end() if(! $pos);
132 35590         64807 return $pos;
133             }
134              
135             1;
136