2 # BioPerl module for Bio::SeqIO::PIR
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Aaron Mackey <amackey@virginia.edu>
8 # Copyright Aaron Mackey
10 # You may distribute this module under the same terms as perl itself
13 # October 18, 1999 Largely rewritten by Lincoln Stein
15 # POD documentation - main docs before the code
19 Bio::SeqIO::pir - PIR sequence input/output stream
23 Do not use this module directly. Use it via the Bio::SeqIO class.
27 This object can transform Bio::Seq objects to and from pir flat
30 Note: This does not completely preserve the PIR format - quality
31 information about sequence is currently discarded since bioperl
32 does not have a mechanism for handling these encodings in sequence
39 User feedback is an integral part of the evolution of this and other
40 Bioperl modules. Send your comments and suggestions preferably to one
41 of the Bioperl mailing lists. Your participation is much appreciated.
43 bioperl-l@bioperl.org - General discussion
44 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
48 Please direct usage questions or support issues to the mailing list:
50 I<bioperl-l@bioperl.org>
52 rather than to the module maintainer directly. Many experienced and
53 reponsive experts will be able look at the problem and quickly
54 address it. Please include a thorough description of the problem
55 with code and data examples if at all possible.
59 Report bugs to the Bioperl bug tracking system to help us keep track
60 the bugs and their resolution.
61 Bug reports can be submitted via the web:
63 https://github.com/bioperl/bioperl-live/issues
67 Aaron Mackey E<lt>amackey@virginia.eduE<gt>
68 Lincoln Stein E<lt>lstein@cshl.orgE<gt>
69 Jason Stajich E<lt>jason@bioperl.orgE<gt>
73 The rest of the documentation details each of the object
74 methods. Internal methods are usually preceded with a _
78 # Let the code begin...
80 package Bio
::SeqIO
::pir
;
83 use Bio
::Seq
::SeqFactory
;
85 use base
qw(Bio::SeqIO);
87 our %VALID_TYPE = map {$_ => 1} qw(P1 F1 DL DC RL RC XX);
91 $self->SUPER::_initialize
(@args);
92 if( ! defined $self->sequence_factory ) {
93 $self->sequence_factory(Bio
::Seq
::SeqFactory
->new
94 (-verbose
=> $self->verbose(),
95 -type
=> 'Bio::Seq'));
102 Usage : $seq = $stream->next_seq()
103 Function: returns the next sequence in the stream
104 Returns : Bio::Seq object
112 return unless my $line = $self->_readline;
113 if( $line eq '>' ) { # handle the very first one having no comment
114 return unless $line = $self->_readline;
116 my ($top, $desc,$seq) = ( $line =~ /^(.+?)\n(.+?)\n([^>]*)/s ) or
117 $self->throw("Cannot parse entry PIR entry [$line]");
120 if ( $top =~ /^>?(\S{2});(\S+)\s*$/ ) {
121 ( $type,$id ) = ($1, $2);
122 if (!exists $VALID_TYPE{$type} ) {
123 $self->throw("PIR stream read attempted without proper two-letter sequence code [ $type ]");
126 $self->throw("Line does not match PIR format [ $line ]");
129 # P - indicates complete protein
130 # F - indicates protein fragment
131 # not sure how to stuff these into a Bio object
132 # suitable for writing out.
134 $seq =~ s/[\(\)\.\/\=\,]//g
;
135 $seq =~ s/\s+//g; # get rid of whitespace
137 my ($alphabet) = ('protein');
138 # TODO - not processing SFS data
139 return $self->sequence_factory->create
144 -alphabet
=> $alphabet
151 Usage : $stream->write_seq(@seq)
152 Function: writes the $seq object into the stream
153 Returns : 1 for success and 0 for error
154 Args : Array of Bio::PrimarySeqI objects
160 my ($self, @seq) = @_;
162 $self->throw("Did not provide a valid Bio::PrimarySeqI object")
163 unless defined $seq && ref($seq) && $seq->isa('Bio::PrimarySeqI');
165 $self->warn("No whitespace allowed in PIR ID [". $seq->display_id. "]")
166 if $seq->display_id =~ /\s/;
168 my $str = $seq->seq();
169 return unless $self->_print(">P1;".$seq->id(),
170 "\n", $seq->desc(), "\n",
174 $self->flush if $self->_flush_on_write && defined $self->_fh;