~ubuntu-branches/ubuntu/raring/bioperl/raring

« back to all changes in this revision

Viewing changes to Bio/SeqFeature/Gene/Promoter.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2008-03-18 14:44:57 UTC
  • mfrom: (4 hardy)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20080318144457-1jjoztrvqwf0gruk
* debian/control:
  - Removed MIA Matt Hope (dopey) from the Uploaders field.
    Thank you for your work, Matt. I hope you are doing well.
  - Downgraded some recommended package to the 'Suggests' priority,
    according to the following discussion on Upstream's mail list.
    http://bioperl.org/pipermail/bioperl-l/2008-March/027379.html
    (Closes: #448890)
* debian/copyright converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Promoter.pm,v 1.4 2002/10/22 07:45:20 lapp Exp $
 
1
# $Id: Promoter.pm,v 1.8.4.1 2006/10/02 23:10:28 sendu Exp $
2
2
#
3
3
# BioPerl module for Bio::SeqFeature::Gene::Promoter
4
4
#
12
12
 
13
13
=head1 NAME
14
14
 
15
 
Bio::SeqFeature::Gene::Promoter - Describes a promotor      
 
15
Bio::SeqFeature::Gene::Promoter - Describes a promoter      
16
16
 
17
17
=head1 SYNOPSIS
18
18
 
30
30
Bioperl modules. Send your comments and suggestions preferably to
31
31
the Bioperl mailing list.  Your participation is much appreciated.
32
32
 
33
 
  bioperl-l@bioperl.org              - General discussion
34
 
  http://bioperl.org/MailList.shtml  - About the mailing lists
 
33
  bioperl-l@bioperl.org                  - General discussion
 
34
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
35
35
 
36
36
=head2 Reporting Bugs
37
37
 
38
38
Report bugs to the Bioperl bug tracking system to help us keep track
39
 
of the bugs and their resolution. Bug reports can be submitted via
40
 
email or the web:
 
39
of the bugs and their resolution. Bug reports can be submitted via the
 
40
web:
41
41
 
42
 
  bioperl-bugs@bioperl.org
43
 
  http://bugzilla.bioperl.org/
 
42
  http://bugzilla.open-bio.org/
44
43
 
45
44
=head1 AUTHOR - David Block
46
45
 
47
46
Email dblock@gene.pbi.nrc.ca
48
47
 
49
 
Describe contact details here
50
 
 
51
 
=head1 CONTRIBUTORS
52
 
 
53
 
Additional contributors names and emails here
54
 
 
55
48
=head1 APPENDIX
56
49
 
57
50
The rest of the documentation details each of the object methods.
64
57
 
65
58
 
66
59
package Bio::SeqFeature::Gene::Promoter;
67
 
use vars qw(@ISA);
68
60
use strict;
69
61
 
70
62
# Object preamble - inherits from Bio::Root::Root
71
63
 
72
 
use Bio::SeqFeature::Gene::NC_Feature;
73
64
 
74
 
@ISA = qw(Bio::SeqFeature::Gene::NC_Feature);
 
65
use base qw(Bio::SeqFeature::Gene::NC_Feature);
75
66
 
76
67
sub new {
77
68
  my($class,@args) = @_;