maint: restructure to use Dist::Zilla
[bioperl-live.git] / lib / Bio / Matrix / IO / mlagan.pm
blob4599ecb4e4635f94d1b8820b2fe8a6fb85e31675
2 # BioPerl module for Bio::Matrix::IO::mlagan
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Sendu Bala <bix@sendu.me.uk>
8 # Copyright Sendu Bala
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::Matrix::IO::mlagan - A parser for the mlagan substitution matrix
18 =head1 SYNOPSIS
20 use Bio::Matrix::IO;
21 my $parser = Bio::Matrix::IO->new(-format => 'mlagan',
22 -file => 'nucmatrix.txt');
23 my $matrix = $parser->next_matrix;
24 my $gap_open = $parser->gap_open;
25 my $gap_continue = $parser->gap_continue;
27 =head1 DESCRIPTION
29 Use to read in and write out substitution matrix files suitable for use by
30 mlagan.
32 =head1 FEEDBACK
34 =head2 Mailing Lists
36 User feedback is an integral part of the evolution of this and other
37 Bioperl modules. Send your comments and suggestions preferably to
38 the Bioperl mailing list. Your participation is much appreciated.
40 bioperl-l@bioperl.org - General discussion
41 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
43 =head2 Support
45 Please direct usage questions or support issues to the mailing list:
47 I<bioperl-l@bioperl.org>
49 rather than to the module maintainer directly. Many experienced and
50 reponsive experts will be able look at the problem and quickly
51 address it. Please include a thorough description of the problem
52 with code and data examples if at all possible.
54 =head2 Reporting Bugs
56 Report bugs to the Bioperl bug tracking system to help us keep track
57 of the bugs and their resolution. Bug reports can be submitted via
58 the web:
60 https://github.com/bioperl/bioperl-live/issues
62 =head1 AUTHOR - Sendu Bala
64 Email bix@sendu.me.uk
66 =head1 APPENDIX
68 The rest of the documentation details each of the object methods.
69 Internal methods are usually preceded with a _
71 =cut
73 # Let the code begin...
75 package Bio::Matrix::IO::mlagan;
76 use strict;
78 use Bio::Matrix::Mlagan;
79 use base qw(Bio::Matrix::IO);
81 =head2 new
83 Title : new
84 Usage : my $obj = Bio::Matrix::IO::mlagan->new();
85 Function: Builds a new Bio::Matrix::IO::mlagan object
86 Returns : an instance of Bio::Matrix::IO::mlagan
87 Args :
89 =cut
91 =head2 next_matrix
93 Title : next_matrix
94 Usage : my $matrix = $obj->next_matrix();
95 Function: parses a matrix file
96 Returns : L<Bio::Matrix::Mlagan>
97 Args : none
99 =cut
101 sub next_matrix {
102 my $self = shift;
104 my (@matrix, $gap_open, $gap_cont);
105 while (defined ($_ = $self->_readline)) {
106 if (/^[ACGTN\.]/) {
107 my (undef, @values) = split;
108 push(@matrix, \@values);
110 elsif (/^[-\d]/) {
111 ($gap_open, $gap_cont) = split;
112 last;
116 @matrix == 6 || $self->throw("Something wrong with file, was it the correct format?");
118 my $matrix = Bio::Matrix::Mlagan->new(-values => \@matrix,
119 -gap_open => $gap_open,
120 -gap_continue => $gap_cont);
122 return $matrix;
125 =head2 write_matrix
127 Title : write_matrix
128 Usage : $obj->write_matrix($matrix)
129 Function: Write out a matrix in mlagan format
130 Returns : n/a
131 Args : L<Bio::Matrix::Generic>
133 =cut
135 sub write_matrix {
136 my ($self, $matrix) = @_;
137 $matrix || $self->throw("Matrix required as input");
138 my $gap_open = $matrix->gap_open;
139 my $gap_continue = $matrix->gap_continue;
141 unless (defined $gap_open && defined $gap_continue) {
142 $self->throw("gap_open() and gap_continue() in the supplied matrix object must both be set");
145 $self->_print(" A C G T . N\n");
147 foreach my $char (qw(A C G T . N)) {
148 my @row = $matrix->get_row($char);
149 my $row = $char;
150 foreach my $val (@row) {
151 $row .= " " x (5 - length($val)) . $val;
154 $self->_print($row."\n");
157 $self->_print("\n$gap_open $gap_continue");
159 return;