0
|
1 # $Id: ResultI.pm,v 1.1.2.1 2003/02/21 02:58:47 heikki Exp $
|
|
2 #
|
|
3 # bioperl module for Bio::Coordinate::ResultI
|
|
4 #
|
|
5 # Cared for by Heikki Lehvaslaiho <heikki@ebi.ac.uk>
|
|
6 #
|
|
7 # Copyright 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 =head1 NAME
|
|
14
|
|
15 Bio::Coordinate::ResultI - Interface to identify coordinate mapper results
|
|
16
|
|
17 =head1 SYNOPSIS
|
|
18
|
|
19 # not to be used directly
|
|
20
|
|
21 =head1 DESCRIPTION
|
|
22
|
|
23 ResultI identifies Bio::LocationIs returned by
|
|
24 Bio::Coordinate::MapperI implementing classes from other locations.
|
|
25
|
|
26 =head1 FEEDBACK
|
|
27
|
|
28 =head2 Mailing Lists
|
|
29
|
|
30 User feedback is an integral part of the evolution of this and other
|
|
31 Bioperl modules. Send your comments and suggestions preferably to the
|
|
32 Bioperl mailing lists Your participation is much appreciated.
|
|
33
|
|
34 bioperl-l@bioperl.org - General discussion
|
|
35 http://bio.perl.org/MailList.html - About the mailing lists
|
|
36
|
|
37 =head2 Reporting Bugs
|
|
38
|
|
39 report bugs to the Bioperl bug tracking system to help us keep track
|
|
40 the bugs and their resolution. Bug reports can be submitted via
|
|
41 email or the web:
|
|
42
|
|
43 bioperl-bugs@bio.perl.org
|
|
44 http://bugzilla.bioperl.org/
|
|
45
|
|
46 =head1 AUTHOR - Heikki Lehvaslaiho
|
|
47
|
|
48 Email: heikki@ebi.ac.uk
|
|
49 Address:
|
|
50
|
|
51 EMBL Outstation, European Bioinformatics Institute
|
|
52 Wellcome Trust Genome Campus, Hinxton
|
|
53 Cambs. CB10 1SD, United Kingdom
|
|
54
|
|
55 =head1 CONTRIBUTORS
|
|
56
|
|
57 Additional contributors names and emails here
|
|
58
|
|
59 =head1 APPENDIX
|
|
60
|
|
61 The rest of the documentation details each of the object
|
|
62 methods. Internal methods are usually preceded with a _
|
|
63
|
|
64 =cut
|
|
65
|
|
66
|
|
67 # Let the code begin...
|
|
68
|
|
69 package Bio::Coordinate::ResultI;
|
|
70 use vars qw(@ISA );
|
|
71 use strict;
|
|
72
|
|
73 # Object preamble
|
|
74 use Bio::LocationI;
|
|
75
|
|
76 @ISA = qw(Bio::LocationI);
|
|
77
|
|
78
|
|
79 1;
|
|
80
|