t/AlignIO/AlignIO.t: fix number of tests in plan (fixup c523e6bed866)
[bioperl-live.git] / Bio / LiveSeq / Repeat_Unit.pm
blobd12e7c54db24cb8995d9036810fe215394072735
2 # bioperl module for Bio::LiveSeq::Repeat_Unit
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Joseph Insana <insana@ebi.ac.uk> <jinsana@gmx.net>
8 # Copyright Joseph Insana
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::LiveSeq::Repeat_Unit - Repeat_Unit class for LiveSeq
18 =head1 SYNOPSIS
20 # documentation needed
22 =head1 DESCRIPTION
24 Class for REPEAT_UNIT objects. They consist of a beginlabel, an endlabel (both
25 referring to a LiveSeq DNA object) and a strand.
26 The strand could be 1 (forward strand, default), -1 (reverse strand).
28 =head1 AUTHOR - Joseph A.L. Insana
30 Email: Insana@ebi.ac.uk, jinsana@gmx.net
32 =head1 APPENDIX
34 The rest of the documentation details each of the object
35 methods. Internal methods are usually preceded with a _
37 =cut
39 # Let the code begin...
41 package Bio::LiveSeq::Repeat_Unit;
43 use strict;
44 use base qw(Bio::LiveSeq::Repeat_Region);
46 =head2 new
48 Title : new
49 Usage : $intron1=Bio::LiveSeq::Repeat_Unit->new(-seq => $objref,
50 -start => $startlabel,
51 -end => $endlabel, -strand => 1);
53 Function: generates a new Bio::LiveSeq::Repeat_Unit
54 Returns : reference to a new object of class Repeat_Unit
55 Errorcode -1
56 Args : two labels and an integer
58 =cut