maint: restructure to use Dist::Zilla
[bioperl-live.git] / lib / Bio / SeqIO / ztr.pm
blobd06fa9db56f2474a1de9d214afe32438f6580c66
1 # BioPerl module for Bio::SeqIO::ztr
3 # Please direct questions and support issues to <bioperl-l@bioperl.org>
5 # Cared for by Aaron Mackey <amackey@virginia.edu>
7 # Copyright Aaron Mackey
9 # You may distribute this module under the same terms as perl itself
11 # POD documentation - main docs before the code
13 =head1 NAME
15 Bio::SeqIO::ztr - ztr trace sequence input/output stream
17 =head1 SYNOPSIS
19 Do not use this module directly. Use it via the Bio::SeqIO class.
21 =head1 DESCRIPTION
23 This object can transform Bio::Seq objects to and from ztr trace
24 files.
26 =head1 FEEDBACK
28 =head2 Mailing Lists
30 User feedback is an integral part of the evolution of this and other
31 Bioperl modules. Send your comments and suggestions preferably to one
32 of the Bioperl mailing lists. Your participation is much appreciated.
34 bioperl-l@bioperl.org - General discussion
35 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
37 =head2 Support
39 Please direct usage questions or support issues to the mailing list:
41 I<bioperl-l@bioperl.org>
43 rather than to the module maintainer directly. Many experienced and
44 reponsive experts will be able look at the problem and quickly
45 address it. Please include a thorough description of the problem
46 with code and data examples if at all possible.
48 =head2 Reporting Bugs
50 Report bugs to the Bioperl bug tracking system to help us keep track
51 the bugs and their resolution.
52 Bug reports can be submitted via the web:
54 https://github.com/bioperl/bioperl-live/issues
56 =head1 AUTHORS - Aaron Mackey
58 Email: amackey@virginia.edu
60 =head1 APPENDIX
62 The rest of the documentation details each of the object
63 methods. Internal methods are usually preceded with a _
65 =cut
67 # Let the code begin...
69 package Bio::SeqIO::ztr;
70 use vars qw(@ISA $READ_AVAIL);
71 use strict;
73 use Bio::SeqIO;
74 use Bio::Seq::SeqFactory;
76 push @ISA, qw( Bio::SeqIO );
78 sub BEGIN {
79 eval { require Bio::SeqIO::staden::read; };
80 if ($@) {
81 $READ_AVAIL = 0;
82 } else {
83 push @ISA, "Bio::SeqIO::staden::read";
84 $READ_AVAIL = 1;
88 sub _initialize {
89 my($self,@args) = @_;
90 $self->SUPER::_initialize(@args);
91 if( ! defined $self->sequence_factory ) {
92 $self->sequence_factory(Bio::Seq::SeqFactory->new(-verbose => $self->verbose(), -type => 'Bio::Seq::Quality'));
95 my ($compression) = $self->_rearrange([qw[COMPRESSION]], @args);
96 $compression = 2 unless defined $compression;
97 $self->compression($compression);
99 unless ($READ_AVAIL) {
100 Bio::Root::Root->throw( -class => 'Bio::Root::SystemException',
101 -text => "Bio::SeqIO::staden::read is not available; make sure the bioperl-ext package has been installed successfully!"
106 =head2 next_seq
108 Title : next_seq
109 Usage : $seq = $stream->next_seq()
110 Function: returns the next sequence in the stream
111 Returns : Bio::Seq::Quality object
112 Args : NONE
114 =cut
116 sub next_seq {
118 my ($self) = @_;
120 my ($seq, $id, $desc, $qual) = $self->read_trace($self->_fh, 'ztr');
122 # create the seq object
123 $seq = $self->sequence_factory->create(-seq => $seq,
124 -id => $id,
125 -primary_id => $id,
126 -desc => $desc,
127 -alphabet => 'DNA',
128 -qual => $qual
130 return $seq;
133 =head2 write_seq
135 Title : write_seq
136 Usage : $stream->write_seq(@seq)
137 Function: writes the $seq object into the stream
138 Returns : 1 for success and 0 for error
139 Args : Bio::Seq object
142 =cut
144 sub write_seq {
145 my ($self,@seq) = @_;
147 my $fh = $self->_fh;
148 foreach my $seq (@seq) {
149 $self->write_trace($fh, $seq, 'ztr' . $self->compression);
152 $self->flush if $self->_flush_on_write && defined $self->_fh;
153 return 1;
156 =head2 compression
158 Title : compression
159 Usage : $stream->compression(3);
160 Function: determines the level of ZTR compression
161 Returns : the current (or newly set) value.
162 Args : 1, 2 or 3 - any other (defined) value will cause the compression
163 to be reset to the default of 2.
166 =cut
168 sub compression {
170 my ($self, $val) = @_;
172 if (defined $val) {
173 if ($val =~ m/^1|2|3$/o) {
174 $self->{_compression} = $val;
175 } else {
176 $self->{_compression} = 2;
180 return $self->{_compression};