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
;
76 use vars
qw($DEFAULTPROGRAM);
79 $DEFAULTPROGRAM = 'phylipdist';
81 use Bio::Matrix::PhylipDist;
83 use base qw(Bio::Matrix::IO);
88 Usage : my $obj = Bio::Matrix::IO::phylip->new();
89 Function: Builds a new Bio::Matrix::IO::phylip object
90 Returns : an instance of Bio::Matrix::IO::phylip
97 my($class,@args) = @_;
99 my $self = $class->SUPER::new
(@args);
100 my ($prog) = $self->_rearrange([qw(PROGRAM)], @args);
101 $self->{'_program'} = $prog || $DEFAULTPROGRAM;
109 Usage : my $matrix = $parser->next_matrix
110 Function: Get the next result set from parser data
111 Returns : L<Bio::Matrix::PhylipDist>
123 while ($entry=$self->_readline) {
124 if($#names >=0 && $entry =~/^\s+\d+\n$/){
125 $self->_pushback($entry);
127 } elsif($entry=~/^\s+(\d+)\n$/){
130 } elsif( $entry =~ s/^\s+(\-?\d+\.\d+)/$1/ ) {
131 my (@line) = split( /\s+/,$entry);
132 push @
{$values[-1]}, @line;
135 my ($n,@line) = split( /\s+/,$entry);
138 push @values, [@line];
140 if( scalar @names != $size ) {
141 $self->warn("The number of entries ".(scalar @names).
142 " is not the same $size");
144 $#names>=0 || return;
147 foreach my $name(@names){
149 foreach my $n(@names) {
150 $dist{$name}{$n} = [$i,$j];
155 my $matrix = Bio
::Matrix
::PhylipDist
->new
156 (-matrix_name
=> $self->{'_program'},
159 -values => \
@values);
166 Usage : $matio->write_matrix($matrix)
167 Function: Write out a matrix in the phylip distance format
169 Args : L<Bio::Matrix::PhylipDist>
175 my ($self,@matricies) = @_;
176 foreach my $matrix ( @matricies ) {
177 my @names = @
{$matrix->names};
178 my @values = @
{$matrix->_values};
179 my %matrix = %{$matrix->_matrix};
181 $str.= (" "x
4). scalar(@names)."\n";
182 foreach my $name (@names){
183 my $newname = $name. (" " x
(15-length($name)));
184 if( length($name) >= 15 ) { $newname .= " " }
187 foreach my $n (@names){
188 my ($i,$j) = @
{$matrix{$name}{$n}};
189 if($count < $#names){
190 $str.= $values[$i][$j]. " ";
193 $str.= $values[$i][$j];