sub next_matrix
{ my ($self) = @_;
local ($_);
my (@matrix,@cols,@rows,%extras,$inmatrix);
while( defined ( $_ = $self->_readline ) ) {
next if ( /^\s*$/);
if( /^\#/ ) {
if( $inmatrix ) {
$self->_pushback($_);
last;
}
if( m/Entropy\s+\=\s+(\S+)\,\s+ Expected\s+\=\s+(\S+)/ox ) { $extras{'-entropy'} = $1; $extras{'-expected'} = $2;
} elsif ( m/Expected\s+score\s+\=\s+(\S+)\, \s+Entropy\s+\=\s+(\S+)/xo ){ $extras{'-entropy'} = $2; $extras{'-expected'} = $1;
} elsif( m/(PAM\s+\d+)\s+substitution.+ scale\s+\=\s+(\S+)\s+\=\s+(\S+)/ox ) { $extras{'-matrix_name'} = $1; $extras{'-scale'} = $2;
$extras{'-scale_value'} = $3;
} elsif( /Blocks Database\s+\=\s+(\S+)/o ) {
$extras{'-database'} = $1;
} elsif( m/(\S+)\s+Bit\s+Units/ox ) { $extras{'-scale'} = $1; } elsif( m/Lowest score\s+\=\s+(\S+)\,\s+ Highest score\s+\=\s+(\S+)/ox ) { $extras{'-lowest_score'} = $1; $extras{'-highest_score'} = $2;
} elsif( m/(Lambda)\s+\=\s+(\S+)\s+bits\, \s+(H)\s+\=\s+(\S+)/ox ) { # This is a DNA matrix $extras{$1} = $2; $extras{$3} = $4;
}
} elsif( s/^\s+(\S+)/$1/ ) {
@cols = split;
if( $cols[0] ne 'A' ) {
$self->warn("Unrecognized first line of matrix, we might not have parsed it correctly");
}
$inmatrix = 1;
} elsif( $inmatrix ) {
if( ! /^(\S+)/ ) { $inmatrix = 0; next }
my ($rowname,@row) = split;
push @rows, $rowname;
push @matrix, [@row];
} else {
print;
}
}
my $matrix = Bio::Matrix::Scoring->new(-values =>\@ matrix,
-rownames =>\@ rows,
-colnames =>\@ cols,
%extras);} |
sub write_matrix
{ my ($self,@args) = @_;
$self->warn("cannot actually use this function yet - it isn't finished");
return;
}
1;} |
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list. Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
the web:
http://bugzilla.open-bio.org/
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _