1 # BioPerl module for Bio::SeqIO::ctf
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
15 Bio::SeqIO::ctf - ctf trace sequence input/output stream
19 Do not use this module directly. Use it via the Bio::SeqIO class.
23 This object can transform Bio::Seq objects to and from ctf trace
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
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.
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
62 The rest of the documentation details each of the object
63 methods. Internal methods are usually preceded with a _
67 # Let the code begin...
69 package Bio
::SeqIO
::ctf
;
70 use vars
qw(@ISA $READ_AVAIL);
74 use Bio::Seq::SeqFactory;
76 push @ISA, qw( Bio::SeqIO );
79 eval { require Bio
::SeqIO
::staden
::read; };
83 push @ISA, "Bio::SeqIO::staden::read";
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'));
94 unless ($READ_AVAIL) {
95 Bio
::Root
::Root
->throw( -class => 'Bio::Root::SystemException',
96 -text
=> "Bio::SeqIO::staden::read is not available; make sure the bioperl-ext package has been installed successfully!"
104 Usage : $seq = $stream->next_seq()
105 Function: returns the next sequence in the stream
106 Returns : Bio::Seq::Quality object
115 my ($seq, $id, $desc, $qual) = $self->read_trace($self->_fh, 'ctf');
117 # create the seq object
118 $seq = $self->sequence_factory->create(-seq
=> $seq,
131 Usage : $stream->write_seq(@seq)
132 Function: writes the $seq object into the stream
133 Returns : 1 for success and 0 for error
134 Args : Bio::Seq object
140 my ($self,@seq) = @_;
143 foreach my $seq (@seq) {
144 $self->write_trace($fh, $seq, 'ctf');
147 $self->flush if $self->_flush_on_write && defined $self->_fh;