2 # BioPerl module for Bio::Matrix::IO::phylip
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Jason Stajich <jason-at-bioperl-dot.org>
8 # Copyright Jason Stajich
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::Matrix::IO::phylip - A parser for PHYLIP distance matricies
21 my $parser = Bio::Matrix::IO->new(-format => 'phylip',
22 -file => 't/data/phylipdist.out');
23 my $matrix = $parser->next_matrix;
27 This is a parser for PHYLIP distance matrix output.
33 User feedback is an integral part of the evolution of this and other
34 Bioperl modules. Send your comments and suggestions preferably to
35 the Bioperl mailing list. Your participation is much appreciated.
37 bioperl-l@bioperl.org - General discussion
38 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
42 Please direct usage questions or support issues to the mailing list:
44 I<bioperl-l@bioperl.org>
46 rather than to the module maintainer directly. Many experienced and
47 reponsive experts will be able look at the problem and quickly
48 address it. Please include a thorough description of the problem
49 with code and data examples if at all possible.
53 Report bugs to the Bioperl bug tracking system to help us keep track
54 of the bugs and their resolution. Bug reports can be submitted via
57 https://github.com/bioperl/bioperl-live/issues
59 =head1 AUTHOR - Jason Stajich
61 Email jason-at-bioperl-dot.org
65 The rest of the documentation details each of the object methods.
66 Internal methods are usually preceded with a _
71 # Let the code begin...
74 package Bio
::Matrix
::IO
::phylip
;
75 use vars
qw($DEFAULTPROGRAM);
78 $DEFAULTPROGRAM = 'phylipdist';
80 use Bio::Matrix::PhylipDist;
82 use base qw(Bio::Matrix::IO);
87 Usage : my $obj = Bio::Matrix::IO::phylip->new();
88 Function: Builds a new Bio::Matrix::IO::phylip object
89 Returns : an instance of Bio::Matrix::IO::phylip
96 my($class,@args) = @_;
98 my $self = $class->SUPER::new
(@args);
99 my ($prog) = $self->_rearrange([qw(PROGRAM)], @args);
100 $self->{'_program'} = $prog || $DEFAULTPROGRAM;
108 Usage : my $matrix = $parser->next_matrix
109 Function: Get the next result set from parser data
110 Returns : L<Bio::Matrix::PhylipDist>
122 while ($entry=$self->_readline) {
123 if($#names >=0 && $entry =~/^\s+\d+\n$/){
124 $self->_pushback($entry);
126 } elsif($entry=~/^\s+(\d+)\n$/){
129 } elsif( $entry =~ s/^\s+(\-?\d+\.\d+)/$1/ ) {
130 my (@line) = split( /\s+/,$entry);
131 push @
{$values[-1]}, @line;
134 my ($n,@line) = split( /\s+/,$entry);
137 push @values, [@line];
139 if( scalar @names != $size ) {
140 $self->warn("The number of entries ".(scalar @names).
141 " is not the same $size");
143 $#names>=0 || return;
146 foreach my $name(@names){
148 foreach my $n(@names) {
149 $dist{$name}{$n} = [$i,$j];
154 my $matrix = Bio
::Matrix
::PhylipDist
->new
155 (-matrix_name
=> $self->{'_program'},
158 -values => \
@values);
165 Usage : $matio->write_matrix($matrix)
166 Function: Write out a matrix in the phylip distance format
168 Args : L<Bio::Matrix::PhylipDist>
174 my ($self,@matricies) = @_;
175 foreach my $matrix ( @matricies ) {
176 my @names = @
{$matrix->names};
177 my @values = @
{$matrix->_values};
178 my %matrix = %{$matrix->_matrix};
180 $str.= (" "x
4). scalar(@names)."\n";
181 foreach my $name (@names){
182 my $newname = $name. (" " x
(15-length($name)));
183 if( length($name) >= 15 ) { $newname .= " " }
186 foreach my $n (@names){
187 my ($i,$j) = @
{$matrix{$name}{$n}};
188 if($count < $#names){
189 $str.= $values[$i][$j]. " ";
192 $str.= $values[$i][$j];