1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
#
# BioPerl module for Bio::Tools::Phylo::Molphy::Result
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Jason Stajich <jason@bioperl.org>
#
# Copyright Jason Stajich
#
# You may distribute this module under the same terms as perl itself
# POD documentation - main docs before the code
=head1 NAME
Bio::Tools::Phylo::Molphy::Result - container for data parsed from a ProtML run
=head1 SYNOPSIS
# do not use this object directly, you will get it back as part of a
# Molphy parser
use Bio::Tools::Phylo::Molphy;
my $parser = Bio::Tools::Phylo::Molphy->new(-file => 'output.protml');
while( my $r = $parser->next_result ) {
# r is a Bio::Tools::Phylo::Molphy::Result object
# print the model name
print $r->model, "\n";
# get the substitution matrix
# this is a hash of 3letter aa codes -> 3letter aa codes representing
# substitution rate
my $smat = $r->substitution_matrix;
print "Arg -> Gln substitution rate is %d\n",
$smat->{'Arg'}->{'Gln'}, "\n";
# get the transition probablity matrix
# this is a hash of 3letter aa codes -> 3letter aa codes representing
# transition probabilty
my $tmat = $r->transition_probability_matrix;
print "Arg -> Gln transition probablity is %.2f\n",
$tmat->{'Arg'}->{'Gln'}, "\n";
# get the frequency for each of the residues
my $rfreqs = $r->residue_frequencies;
foreach my $residue ( keys %{$rfreqs} ) {
printf "residue %s expected freq: %.2f observed freq: %.2f\n",
$residue,$rfreqs->{$residue}->[0], $rfreqs->{$residue}->[1];
}
my @trees;
while( my $t = $r->next_tree ) {
push @trees, $t;
}
print "search space is ", $r->search_space, "\n",
"1st tree score is ", $trees[0]->score, "\n";
# writing to STDOUT, use -file => '>filename' to specify a file
my $out = Bio::TreeIO->new(-format => "newick");
$out->write_tree($trees[0]); # writing only the 1st tree
}
=head1 DESCRIPTION
A container for data parsed from a ProtML run.
=head1 FEEDBACK
=head2 Mailing Lists
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
=head2 Support
Please direct usage questions or support issues to the mailing list:
I<bioperl-l@bioperl.org>
rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.
=head2 Reporting Bugs
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:
https://github.com/bioperl/bioperl-live/issues
=head1 AUTHOR - Jason Stajich
Email jason-at-bioperl.org
=head1 APPENDIX
The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _
=cut
# Let the code begin...
package Bio::Tools::Phylo::Molphy::Result;
use strict;
# Object preamble - inherits from Bio::Root::Root
use base qw(Bio::Root::Root);
=head2 new
Title : new
Usage : my $obj = Bio::Tools::Phylo::Molphy::Result->new();
Function: Builds a new Bio::Tools::Phylo::Molphy::Result object
Returns : Bio::Tools::Phylo::Molphy::Result
Args :
=cut
sub new {
my($class,@args) = @_;
my $self = $class->SUPER::new(@args);
my ($trees,$smat,$freq,
$model, $sspace,
) = $self->_rearrange([qw(TREES SUBSTITUTION_MATRIX
FREQUENCIES
MODEL SEARCH_SPACE)], @args);
if( $trees ) {
if(ref($trees) !~ /ARRAY/i ) {
$self->warn("Must provide a valid array reference to initialize trees");
} else {
foreach my $t ( @$trees ) {
$self->add_tree($t);
}
}
}
# initialize things through object methods to be a good
# little OO programmer
if( ref($smat) =~ /HASH/i ) {
$self->substitution_matrix($smat);
}
if( ref($freq) =~ /HASH/i ) {
$self->residue_frequencies($freq);
}
$model && $self->model($model);
$sspace && $self->search_space($sspace);
$self->{'_treeiterator'} = 0;
return $self;
}
=head2 model
Title : model
Usage : $obj->model($newval)
Function:
Returns : value of model
Args : newvalue (optional)
=cut
sub model{
my ($self,$value) = @_;
if( defined $value) {
$self->{'model'} = $value;
}
return $self->{'model'};
}
=head2 substitution_matrix
Title : substitution_matrix
Usage : my $smat = $result->subsitution_matrix;
Function: Get the relative substitution matrix calculated in the ML procedure
Returns : reference to hash of hashes where key is the aa/nt name and value
is another hash ref which contains keys for all the aa/nt
possibilities
Args : none
=cut
sub substitution_matrix{
my ($self,$val) = @_;
if(defined $val ) {
if( ref($val) =~ /HASH/ ) {
foreach my $v (values %{$val} ) {
if( ref($v) !~ /HASH/i ) {
$self->warn("Must be a valid hashref of hashrefs for substition_matrix");
return;
}
}
$self->{'_substitution_matrix'} = $val;
} else {
$self->warn("Must be a valid hashref of hashrefs for substition_matrix");
return;
}
}
return $self->{'_substitution_matrix'};
}
=head2 transition_probability_matrix
Title : transition_probability_matrix
Usage : my $matrixref = $molphy->transition_probablity_matrix();
Function: Gets the observed transition probability matrix
Returns : hash of hashes of aa/nt transition to each other aa/nt
Args : Transition matrix type, typically
'1PAM-1.0e05' or '1PAM-1.0e07'
=cut
sub transition_probability_matrix {
my ($self,$type,$val) = @_;
$type = '1PAM-1.0e7' unless defined $type;
if(defined $val ) {
if( ref($val) =~ /HASH/ ) {
foreach my $v (values %{$val} ) {
if( ref($v) !~ /HASH/i ) {
$self->warn("Must be a valid hashref of hashrefs for transition_probability_matrix");
return;
}
}
$self->{'_TPM'}->{$type} = $val;
} else {
$self->warn("Must be a valid hashref of hashrefs for transition_probablity_matrix");
return;
}
}
# fix this for nucml where there are 2 values (one is just a transformation
# of the either, but how to represent?)
return $self->{'_TPM'}->{$type};
}
=head2 residue_frequencies
Title : residue_frequencies
Usage : my %data = $molphy->residue_frequencies()
Function: Get the modeled and expected frequencies for
each of the residues in the sequence
Returns : hash of either aa (protml) or nt (nucml) frequencies
each key will point to an array reference where
1st slot is model's expected frequency
2nd slot is observed frequency in the data
$hash{'A'}->[0] =
Args : none
=cut
#'
sub residue_frequencies {
my ($self,$val) = @_;
if(defined $val ) {
if( ref($val) =~ /HASH/ ) {
$self->{'_residue_frequencies'} = $val;
} else {
$self->warn("Must be a valid hashref of hashrefs for residue_frequencies");
}
}
return %{$self->{'_residue_frequencies'}};
}
=head2 next_tree
Title : next_tree
Usage : my $tree = $factory->next_tree;
Function: Get the next tree from the factory
Returns : L<Bio::Tree::TreeI>
Args : none
=cut
sub next_tree{
my ($self,@args) = @_;
return $self->{'_trees'}->[$self->{'_treeiterator'}++] || undef;
}
=head2 rewind_tree
Title : rewind_tree_iterator
Usage : $result->rewind_tree()
Function: Rewinds the tree iterator so that next_tree can be
called again from the beginning
Returns : none
Args : none
=cut
sub rewind_tree_iterator {
shift->{'_treeiterator'} = 0;
}
=head2 add_tree
Title : add_tree
Usage : $result->add_tree($tree);
Function: Adds a tree
Returns : integer which is the number of trees stored
Args : L<Bio::Tree::TreeI>
=cut
sub add_tree{
my ($self,$tree) = @_;
if( $tree && ref($tree) && $tree->isa('Bio::Tree::TreeI') ) {
push @{$self->{'_trees'}},$tree;
}
return scalar @{$self->{'_trees'}};
}
=head2 search_space
Title : search_space
Usage : $obj->search_space($newval)
Function:
Returns : value of search_space
Args : newvalue (optional)
=cut
sub search_space{
my ($self,$value) = @_;
if( defined $value) {
$self->{'search_space'} = $value;
}
return $self->{'search_space'};
}
1;
|