57cc40cd768191acd5513285c0fea1e82c3b0fe0
[jalview.git] / forester / java / src / org / forester / msa_compactor / MsaProperties.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2014 Christian M. Zmasek
6 // Copyright (C) 2014 Sanford-Burnham Medical Research Institute
7 // All rights reserved
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 //
23 // WWW: https://sites.google.com/site/cmzmasek/home/software/forester
24
25 package org.forester.msa_compactor;
26
27 import org.forester.msa.Msa;
28 import org.forester.msa.MsaMethods;
29
30 public final class MsaProperties {
31
32     final private double _average_identity_ratio;
33     final private double _gap_ratio;
34     final private int    _length;
35     final private int    _number_of_sequences;
36
37     public MsaProperties( final Msa msa ) {
38         _number_of_sequences = msa.getNumberOfSequences();
39         _length = msa.getLength();
40         _gap_ratio = MsaMethods.calcGapRatio( msa );
41         _average_identity_ratio = MsaMethods.calculateIdentityRatio( 0, msa.getLength() - 1, msa ).arithmeticMean();
42     }
43
44     public MsaProperties( final int number_of_sequences,
45                           final int length,
46                           final double gap_ratio,
47                           final double average_identity_ratio ) {
48         _number_of_sequences = number_of_sequences;
49         _length = length;
50         _gap_ratio = gap_ratio;
51         _average_identity_ratio = average_identity_ratio;
52     }
53
54     public final double getAverageIdentityRatio() {
55         return _average_identity_ratio;
56     }
57
58     public final double getGapRatio() {
59         return _gap_ratio;
60     }
61
62     public final int getLength() {
63         return _length;
64     }
65
66     public final int getNumberOfSequences() {
67         return _number_of_sequences;
68     }
69 }