inprogress
[jalview.git] / forester / java / src / org / forester / evoinference / distance / NeighborJoiningX.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2008-2009 Christian M. Zmasek
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
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 // Contact: phylosoft @ gmail . com
24 // WWW: https://sites.google.com/site/cmzmasek/home/software/forester
25
26 package org.forester.evoinference.distance;
27
28 import java.math.RoundingMode;
29 import java.text.DecimalFormat;
30 import java.util.ArrayList;
31 import java.util.List;
32
33 import org.forester.evoinference.matrix.distance.BasicSymmetricalDistanceMatrix;
34 import org.forester.phylogeny.Phylogeny;
35 import org.forester.phylogeny.PhylogenyNode;
36 import org.forester.util.ForesterUtil;
37
38 public final class NeighborJoiningX {
39
40     private BasicSymmetricalDistanceMatrix _d;
41     private double[][]                     _d_values;
42     private final DecimalFormat            _df;
43     private PhylogenyNode[]                _external_nodes;
44     private double[][]                     _m_values;
45     private int[]                          _mappings;
46     private int                            _n;
47     private double[]                       _r;
48     private final boolean                  _verbose;
49
50     private NeighborJoiningX() {
51         _verbose = false;
52         _df = null;
53     }
54
55     private NeighborJoiningX( final boolean verbose, final int maximum_fraction_digits_for_distances ) {
56         if ( ( maximum_fraction_digits_for_distances < 1 ) || ( maximum_fraction_digits_for_distances > 9 ) ) {
57             throw new IllegalArgumentException( "maximum fraction digits for distances is out of range: "
58                     + maximum_fraction_digits_for_distances );
59         }
60         _verbose = verbose;
61         _df = new DecimalFormat();
62         _df.setMaximumFractionDigits( maximum_fraction_digits_for_distances );
63         _df.setRoundingMode( RoundingMode.HALF_UP );
64     }
65
66     public final Phylogeny execute( final BasicSymmetricalDistanceMatrix distance ) {
67         reset( distance );
68         final Phylogeny phylogeny = new Phylogeny();
69         while ( _n > 2 ) {
70             updateM();
71             // Calculates the minimal distance.
72             // If more than one minimal distances, always the first found is used
73             // could randomize this, so that any would be returned in a randomized fashion...
74             double minimum = _m_values[ 0 ][ 1 ];
75             int otu1 = 0;
76             int otu2 = 1;
77             for( int j = 1; j < _n; ++j ) {
78                 for( int i = 0; i < j; ++i ) {
79                     if ( _m_values[ i ][ j ] < minimum ) {
80                         minimum = _m_values[ i ][ j ];
81                         otu1 = i;
82                         otu2 = j;
83                     }
84                 }
85             }
86             // It is a condition that otu1 < otu2.
87             final PhylogenyNode node = new PhylogenyNode();
88             final double d = getValueFromD( otu1, otu2 );
89             final double d1 = ( d / 2 ) + ( ( _r[ otu1 ] - _r[ otu2 ] ) / ( 2 * ( _n - 2 ) ) );
90             final double d2 = d - d1;
91             if ( _df == null ) {
92                 getExternalPhylogenyNode( otu1 ).setDistanceToParent( d1 );
93                 getExternalPhylogenyNode( otu2 ).setDistanceToParent( d2 );
94             }
95             else {
96                 // yes, yes, slow but only grows with n (and not n^2 or worse)...
97                 getExternalPhylogenyNode( otu1 ).setDistanceToParent( Double.parseDouble( _df.format( d1 ) ) );
98                 getExternalPhylogenyNode( otu2 ).setDistanceToParent( Double.parseDouble( _df.format( d2 ) ) );
99             }
100             node.addAsChild( getExternalPhylogenyNode( otu1 ) );
101             node.addAsChild( getExternalPhylogenyNode( otu2 ) );
102             if ( _verbose ) {
103                 printProgress( otu1, otu2 );
104             }
105             calculateDistancesFromNewNode( otu1, otu2, d );
106             _external_nodes[ _mappings[ otu1 ] ] = node;
107             updateMappings( otu2 );
108             --_n;
109         }
110         final double d = getValueFromD( 0, 1 ) / 2;
111         if ( _df == null ) {
112             getExternalPhylogenyNode( 0 ).setDistanceToParent( d );
113             getExternalPhylogenyNode( 1 ).setDistanceToParent( d );
114         }
115         else {
116             final double dd = Double.parseDouble( _df.format( d ) );
117             getExternalPhylogenyNode( 0 ).setDistanceToParent( dd );
118             getExternalPhylogenyNode( 1 ).setDistanceToParent( dd );
119         }
120         final PhylogenyNode root = new PhylogenyNode();
121         root.addAsChild( getExternalPhylogenyNode( 0 ) );
122         root.addAsChild( getExternalPhylogenyNode( 1 ) );
123         if ( _verbose ) {
124             printProgress( 0, 1 );
125         }
126         phylogeny.setRoot( root );
127         phylogeny.setRooted( false );
128         return phylogeny;
129     }
130
131     public final List<Phylogeny> execute( final List<BasicSymmetricalDistanceMatrix> distances_list ) {
132         final List<Phylogeny> pl = new ArrayList<Phylogeny>();
133         for( final BasicSymmetricalDistanceMatrix distances : distances_list ) {
134             pl.add( execute( distances ) );
135         }
136         return pl;
137     }
138
139     private final void calculateDistancesFromNewNode( final int otu1, final int otu2, final double d ) {
140         for( int i = 0; i < _n; ++i ) {
141             if ( ( i == otu1 ) || ( i == otu2 ) ) {
142                 continue;
143             }
144             if ( otu1 < i ) {
145                 _d_values[ _mappings[ otu1 ] ][ _mappings[ i ] ] = ( getValueFromD( otu1, i ) + getValueFromD( i, otu2 ) - d ) / 2;
146             }
147             else {
148                 _d_values[ _mappings[ i ] ][ _mappings[ otu1 ] ] = ( getValueFromD( otu1, i ) + getValueFromD( i, otu2 ) - d ) / 2;
149             }
150         }
151     }
152
153     private final void calculateNetDivergences() {
154         double d;
155         for( int i = 0; i < _n; ++i ) {
156             d = 0;
157             for( int n = 0; n < _n; ++n ) {
158                 if ( i != n ) {
159                     d += getValueFromD( i, n );
160                 }
161             }
162             _r[ i ] = d;
163         }
164     }
165
166     private final PhylogenyNode getExternalPhylogenyNode( final int i ) {
167         return _external_nodes[ _mappings[ i ] ];
168     }
169
170     private final double getValueFromD( final int otu1, final int otu2 ) {
171         if ( otu1 > otu2 ) {
172             return _d_values[ _mappings[ otu2 ] ][ _mappings[ otu1 ] ];
173         }
174         return _d_values[ _mappings[ otu1 ] ][ _mappings[ otu2 ] ];
175     }
176
177     private final void initExternalNodes() {
178         _external_nodes = new PhylogenyNode[ _n ];
179         String id;
180         for( int i = 0; i < _n; ++i ) {
181             _external_nodes[ i ] = new PhylogenyNode();
182             id = _d.getIdentifier( i );
183             if ( id != null ) {
184                 _external_nodes[ i ].setName( id );
185             }
186             else {
187                 _external_nodes[ i ].setName( "" + i );
188             }
189             _mappings[ i ] = i;
190         }
191     }
192
193     private final void printProgress( final int otu1, final int otu2 ) {
194         final PhylogenyNode n1 = getExternalPhylogenyNode( otu1 );
195         final PhylogenyNode n2 = getExternalPhylogenyNode( otu2 );
196         System.out.println( "Node " + ( ForesterUtil.isEmpty( n1.getName() ) ? n1.getId() : n1.getName() ) + " joins "
197                 + ( ForesterUtil.isEmpty( n2.getName() ) ? n2.getId() : n2.getName() ) );
198     }
199
200     // only the values in the lower triangle are used.
201     // !matrix values will be changed!
202     private final void reset( final BasicSymmetricalDistanceMatrix distances ) {
203         _n = distances.getSize();
204         _d = distances;
205         _r = new double[ _n ];
206         _mappings = new int[ _n ];
207         _d_values = _d.getValues();
208         _m_values = new double[ _n ][ _n ];
209         initExternalNodes();
210     }
211
212     private final void updateM() {
213         calculateNetDivergences();
214         for( int j = 1; j < _n; ++j ) {
215             for( int i = 0; i < j; ++i ) {
216                 _m_values[ i ][ j ] = getValueFromD( i, j ) - ( ( _r[ i ] + _r[ j ] ) / ( _n - 2 ) );
217             }
218         }
219     }
220
221     // otu2 will, in effect, be "deleted" from the matrix.
222     private final void updateMappings( final int otu2 ) {
223         for( int i = otu2; i < ( _mappings.length - 1 ); ++i ) {
224             _mappings[ i ] = _mappings[ i + 1 ];
225         }
226     }
227
228     public final static NeighborJoiningX createInstance() {
229         return new NeighborJoiningX();
230     }
231
232     public final static NeighborJoiningX createInstance( final boolean verbose,
233                                                          final int maximum_fraction_digits_for_distances ) {
234         return new NeighborJoiningX( verbose, maximum_fraction_digits_for_distances );
235     }
236 }