comparison variant_effect_predictor/Bio/Coordinate/Result/Gap.pm @ 0:1f6dce3d34e0

Uploaded
author mahtabm
date Thu, 11 Apr 2013 02:01:53 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1f6dce3d34e0
1 # $Id: Gap.pm,v 1.2.2.1 2003/02/20 05:11:45 heikki Exp $
2 #
3 # BioPerl module for Bio::Coordinate::Result::Gap
4 #
5 # Cared for by Heikki Lehvaslaiho <heikki@ebi.ac.uk>
6 #
7 # Copywright Heikki Lehvaslaiho
8 #
9 # You may distribute this module under the same terms as perl itself
10 #
11 # POD documentation - main docs before the code
12 #
13
14 =head1 NAME
15
16 Bio::Coordinate::Result::Gap - An other name for Bio::Location::Simple
17
18 =head1 SYNOPSIS
19
20 $loc = new Bio::Coordinate::Result::Gap(-start=>10,
21 -end=>30,
22 -strand=>1);
23
24 =head1 DESCRIPTION
25
26 This is a location object for coordinate mapping results.
27
28 =head1 FEEDBACK
29
30 =head2 Mailing Lists
31
32 User feedback is an integral part of the evolution of this and other
33 Bioperl modules. Send your comments and suggestions preferably to one
34 of the Bioperl mailing lists. Your participation is much appreciated.
35
36 bioperl-l@bioperl.org - General discussion
37 http://bio.perl.org/MailList.html - About the mailing lists
38
39 =head2 Reporting Bugs
40
41 Report bugs to the Bioperl bug tracking system to help us keep track
42 the bugs and their resolution. Bug reports can be submitted via email
43 or the web:
44
45 bioperl-bugs@bio.perl.org
46 http://bugzilla.bioperl.org/
47
48 =head1 AUTHOR - Heikki Lehvaslaiho
49
50 Email heikki@ebi.ac.uk
51
52 =head1 CONTRIBUTORS
53
54 Additional contributors names and emails here
55
56 =head1 APPENDIX
57
58 The rest of the documentation details each of the object
59 methods. Internal methods are usually preceded with a _
60
61 =cut
62
63 package Bio::Coordinate::Result::Gap;
64 use vars qw(@ISA);
65 use strict;
66
67 use Bio::Location::Simple;
68 use Bio::Coordinate::ResultI;
69
70 @ISA = qw(Bio::Location::Simple Bio::Coordinate::ResultI);
71
72
73 1;