# -*- perl -*- ########################################################################### # # Copyright (C) 1997-2015 Nigel P. Brown # # (i) License # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # (ii) Contacts # # Project Admin: Nigel P. Brown # Email: biomview@gmail.com # Project URL: http://bio-mview.sourceforge.net # # (iii) Citation # # Please acknowledge use of this Program by citing the following reference in # any published work including web-sites: # # Brown, N.P., Leroy C., Sander C. (1998) MView: A Web compatible database # search or multiple alignment viewer. Bioinformatics. 14(4):380-381. # # and provide a link to the MView project URL given above under 'Contacts'. # ########################################################################### # $Id: PIR.pm,v 1.8 2015/06/14 17:09:04 npb Exp $ ########################################################################### package NPB::Parse::Format::PIR; use vars qw(@ISA); use strict; @ISA = qw(NPB::Parse::Record); #PIR record types my $PIR_Null = '^\s*$';#' my $PIR_SEQ = '^\s*>'; my $PIR_SEQend = $PIR_SEQ; #Consume one entry-worth of input on text stream associated with $file and #return a new Slurp instance. sub get_entry { my ($parent) = @_; my ($line, $offset, $bytes) = ('', -1, 0); while (defined ($line = $parent->{'text'}->getline)) { #start of entry if ($offset < 0) { $offset = $parent->{'text'}->startofline; next; } } return 0 if $offset < 0; $bytes = $parent->{'text'}->tell - $offset; new NPB::Parse::Format::PIR(undef, $parent->{'text'}, $offset, $bytes); } #Parse one entry sub new { my $type = shift; if (@_ < 2) { #at least two args, ($offset, $bytes are optional). NPB::Message::die($type, "new() invalid arguments (@_)"); } my ($parent, $text, $offset, $bytes) = (@_, -1, -1); my ($self, $line, $record); $self = new NPB::Parse::Record($type, $parent, $text, $offset, $bytes); $text = new NPB::Parse::Record_Stream($self); while (defined ($line = $text->next_line)) { #SEQ lines if ($line =~ /$PIR_SEQ/o) { $text->scan_until($PIR_SEQend, 'SEQ'); next; } #blank line or empty record: ignore if ($line =~ /$PIR_Null/o) { next; } #default $self->warn("unknown field: $line"); } $self;#->examine; } ########################################################################### package NPB::Parse::Format::PIR::SEQ; use vars qw(@ISA); @ISA = qw(NPB::Parse::Record); sub new { my $type = shift; if (@_ < 2) { #at least two args, ($offset, $bytes are optional). NPB::Message::die($type, "new() invalid arguments (@_)"); } my ($parent, $text, $offset, $bytes) = (@_, -1, -1); my ($self, $line, $record); $self = new NPB::Parse::Record($type, $parent, $text, $offset, $bytes); $text = new NPB::Parse::Record_Stream($self); $self->{'prefix'} = ''; $self->{'id'} = ''; $self->{'desc'} = ''; $self->{'seq'} = ''; while (defined ($line = $text->next_line(1))) { #read header line if ($line =~ /^\s*>\s*(..);(\S+)/o) { $self->test_args($line, $1, $2); ( $self->{'prefix'}, $self->{'id'}, ) = ($1, $2); #force read of next line for description $self->{'desc'} = $text->next_line(1); $self->{'desc'} = NPB::Parse::Record::strip_leading_space($self->{'desc'}); $self->{'desc'} = NPB::Parse::Record::strip_trailing_space($self->{'desc'}); next; } #read sequence lines upto asterisk, if present if ($line =~ /([^\*]+)/) { $self->{'seq'} .= $1; next; } #ignore lone asterisk last if $line =~ /\*/; #default $self->warn("unknown field: $line"); } #strip internal whitespace from sequence $self->{'seq'} =~ s/\s//g; $self; } sub print_data { my ($self, $indent) = (@_, 0); my $x = ' ' x $indent; printf "$x%20s -> %s\n", 'prefix', $self->{'prefix'}; printf "$x%20s -> %s\n", 'id', $self->{'id'}; printf "$x%20s -> '%s'\n", 'desc', $self->{'desc'}; printf "$x%20s -> %s\n", 'seq', $self->{'seq'}; } ########################################################################### 1;