0
|
1 # $Id: ProbeI.pm,v 1.8.2.1 2003/09/15 21:55:41 allenday Exp $
|
|
2 # BioPerl module for Bio::Expression::ProbeI
|
|
3 #
|
|
4 # Copyright Allen Day <allenday@ucla.edu>, Stan Nelson <snelson@ucla.edu>
|
|
5 # Human Genetics, UCLA Medical School, University of California, Los Angeles
|
|
6
|
|
7 # POD documentation - main docs before the code
|
|
8
|
|
9 =head1 NAME
|
|
10
|
|
11 Bio::Expression::ProbeI - an interface class for DNA/RNA probes
|
|
12
|
|
13 =head1 SYNOPSIS
|
|
14
|
|
15 Do not use this module directly
|
|
16
|
|
17 =head1 DESCRIPTION
|
|
18
|
|
19 This class ISA Bio::Expression::FeatureI, nothing more.
|
|
20
|
|
21 =head1 FEEDBACK
|
|
22
|
|
23 =head2 Mailing Lists
|
|
24
|
|
25 User feedback is an integral part of the evolution of this and other
|
|
26 Bioperl modules. Send your comments and suggestions preferably to one
|
|
27 of the Bioperl mailing lists. Your participation is much appreciated.
|
|
28
|
|
29 bioperl-l@bioperl.org - General discussion
|
|
30 http://bioperl.org/MailList.shtml - About the mailing lists
|
|
31
|
|
32 =head2 Reporting Bugs
|
|
33
|
|
34 Report bugs to the Bioperl bug tracking system to help us keep track
|
|
35 the bugs and their resolution.
|
|
36 Bug reports can be submitted via email or the web:
|
|
37
|
|
38 bioperl-bugs@bio.perl.org
|
|
39 http://bio.perl.org/bioperl-bugs/
|
|
40
|
|
41 =head1 AUTHOR
|
|
42
|
|
43 Allen Day E<lt>allenday@ucla.eduE<gt>
|
|
44
|
|
45 =head1 APPENDIX
|
|
46
|
|
47 The rest of the documentation details each of the object
|
|
48 methods. Internal methods are usually preceded with a _
|
|
49
|
|
50 =cut
|
|
51
|
|
52 # Let the code begin...
|
|
53 package Bio::Expression::ProbeI;
|
|
54
|
|
55 use strict;
|
|
56 use Bio::Root::Root;
|
|
57
|
|
58 use base qw(Bio::Expression::FeatureI);
|
|
59 use vars qw($DEBUG);
|
|
60
|
|
61 1;
|