0
|
1 # $Id: StructureI.pm,v 1.3 2002/10/22 07:45:21 lapp Exp $
|
|
2 # placeholder for Bio::Structure::StructureI
|
|
3
|
|
4 # $Id: StructureI.pm,v 1.3 2002/10/22 07:45:21 lapp Exp $
|
|
5 #
|
|
6 # BioPerl module for Bio::Structure::StructureI
|
|
7 #
|
|
8 # Cared for by Kris Boulez <kris.boulez@algonomics.com>
|
|
9 #
|
|
10 # Copyright Kris Boulez
|
|
11 #
|
|
12 # You may distribute this module under the same terms as perl itself
|
|
13
|
|
14 # POD documentation - main docs before the code
|
|
15
|
|
16 =head1 NAME
|
|
17
|
|
18 Bio::Structure::StructureI - Abstract Interface for a Structure objects
|
|
19
|
|
20 =head1 SYNOPSIS
|
|
21
|
|
22 Give standard usage here
|
|
23
|
|
24 =head1 DESCRIPTION
|
|
25
|
|
26 Describe the interface here
|
|
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
|
|
34 the Bioperl mailing list. Your participation is much appreciated.
|
|
35
|
|
36 bioperl-l@bioperl.org - General discussion
|
|
37 http://bioperl.org/MailList.shtml - 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 of the bugs and their resolution. Bug reports can be submitted via
|
|
43 email or the web:
|
|
44
|
|
45 bioperl-bugs@bioperl.org
|
|
46 http://bugzilla.bioperl.org/
|
|
47
|
|
48 =head1 AUTHOR - Kris Boulez
|
|
49
|
|
50 Email kris.boulez@algonomics.com
|
|
51
|
|
52 Describe contact details here
|
|
53
|
|
54 =head1 CONTRIBUTORS
|
|
55
|
|
56 Additional contributors names and emails here
|
|
57
|
|
58 =head1 APPENDIX
|
|
59
|
|
60 The rest of the documentation details each of the object methods.
|
|
61 Internal methods are usually preceded with a _
|
|
62
|
|
63 =cut
|
|
64
|
|
65
|
|
66 # Let the code begin...
|
|
67
|
|
68
|
|
69 package Bio::Structure::StructureI;
|
|
70 use Bio::Root::RootI;
|
|
71 use vars qw(@ISA);
|
|
72 use strict;
|
|
73
|
|
74 @ISA = qw(Bio::Root::RootI);
|
|
75
|
|
76 1;
|