tag fourth (and hopefully last) alpha
[bioperl-live.git] / branch-1-6 / Bio / Coordinate / Result / Gap.pm
blob76d52a4c54838474a1fdb47e9667c30c2d8afd5b
1 # $Id$
3 # BioPerl module for Bio::Coordinate::Result::Gap
5 # Please direct questions and support issues to <bioperl-l@bioperl.org>
7 # Cared for by Heikki Lehvaslaiho <heikki-at-bioperl-dot-org>
9 # Copywright Heikki Lehvaslaiho
11 # You may distribute this module under the same terms as perl itself
13 # POD documentation - main docs before the code
16 =head1 NAME
18 Bio::Coordinate::Result::Gap - Another name for Bio::Location::Simple
20 =head1 SYNOPSIS
22 $loc = Bio::Coordinate::Result::Gap->new(-start=>10,
23 -end=>30,
24 -strand=>1);
26 =head1 DESCRIPTION
28 This is a location object for coordinate mapping results.
30 =head1 FEEDBACK
32 =head2 Mailing Lists
34 User feedback is an integral part of the evolution of this and other
35 Bioperl modules. Send your comments and suggestions preferably to one
36 of the Bioperl mailing lists. Your participation is much appreciated.
38 bioperl-l@bioperl.org - General discussion
39 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
41 =head2 Support
43 Please direct usage questions or support issues to the mailing list:
45 I<bioperl-l@bioperl.org>
47 rather than to the module maintainer directly. Many experienced and
48 reponsive experts will be able look at the problem and quickly
49 address it. Please include a thorough description of the problem
50 with code and data examples if at all possible.
52 =head2 Reporting Bugs
54 Report bugs to the Bioperl bug tracking system to help us keep track
55 the bugs and their resolution. Bug reports can be submitted via the
56 web:
58 http://bugzilla.open-bio.org/
60 =head1 AUTHOR - Heikki Lehvaslaiho
62 Email heikki-at-bioperl-dot-org
64 =head1 APPENDIX
66 The rest of the documentation details each of the object
67 methods. Internal methods are usually preceded with a _
69 =cut
71 package Bio::Coordinate::Result::Gap;
72 use strict;
75 use base qw(Bio::Location::Simple Bio::Coordinate::ResultI);