rio, lca, refactoring
[jalview.git] / forester / java / src / org / forester / phylogeny / PhylogenyNode.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 // Copyright (C) 2000-2001 Washington University School of Medicine
8 // and Howard Hughes Medical Institute
9 // All rights reserved
10 //
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Lesser General Public
13 // License as published by the Free Software Foundation; either
14 // version 2.1 of the License, or (at your option) any later version.
15 //
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 // Lesser General Public License for more details.
20 //
21 // You should have received a copy of the GNU Lesser General Public
22 // License along with this library; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 //
25 // Contact: phylosoft @ gmail . com
26 // WWW: www.phylosoft.org/forester
27
28 package org.forester.phylogeny;
29
30 import java.util.ArrayList;
31 import java.util.List;
32
33 import org.forester.io.parsers.nhx.NHXFormatException;
34 import org.forester.io.parsers.nhx.NHXParser;
35 import org.forester.io.parsers.phyloxml.PhyloXmlDataFormatException;
36 import org.forester.io.parsers.phyloxml.PhyloXmlUtil;
37 import org.forester.phylogeny.data.BranchData;
38 import org.forester.phylogeny.data.Confidence;
39 import org.forester.phylogeny.data.NodeData;
40 import org.forester.phylogeny.data.PhylogenyDataUtil;
41 import org.forester.phylogeny.iterators.PreorderTreeIterator;
42 import org.forester.util.ForesterUtil;
43
44 /**
45  * Warning. Implementation of method 'compareTo' only looks at 
46  * node name. Thus, use of this class in SortedSets might lead
47  * to unexpected behavior.
48  *
49  */
50 public final class PhylogenyNode implements PhylogenyNodeI, Comparable<PhylogenyNode> {
51
52     private static int               _node_count      = 0;
53     private byte                     _indicator;
54     private int                      _id;
55     private int                      _sum_ext_nodes;
56     private float                    _x;
57     private float                    _y;
58     private double                   _distance_parent = PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT;
59     private boolean                  _collapse;
60     private PhylogenyNode            _parent;
61     private PhylogenyNode            _link;
62     private ArrayList<PhylogenyNode> _descendants;
63     private NodeData                 _node_data;
64     private BranchData               _branch_data;
65     private float                    _x_secondary;
66     private float                    _y_secondary;
67
68     /**
69      * Default constructor for PhylogenyNode.
70      */
71     public PhylogenyNode() {
72         //  init();
73         setId( PhylogenyNode.getNodeCount() );
74         PhylogenyNode.increaseNodeCount();
75         setSumExtNodes( 1 ); // For ext node, this number is 1 (not 0!!)
76     }
77
78     public void removeConnections() {
79         _parent = null;
80         _link = null;
81         _descendants = null;
82     }
83
84     /**
85      * Adds PhylogenyNode n to the list of child nodes and sets the _parent of n
86      * to this.
87      * 
88      * @param n
89      *            the PhylogenyNode to add
90      */
91     @Override
92     final public void addAsChild( final PhylogenyNodeI node ) {
93         final PhylogenyNode n = ( PhylogenyNode ) node;
94         addChildNode( n );
95         n.setParent( this );
96     }
97
98     /**
99      * Adds PhylogenyNode n to the list of child nodes. But does NOT set the
100      * _parent of n to this.
101      * 
102      * @see addAsChild( PhylogenyNode n )
103      * @param n
104      *            the PhylogenyNode to add
105      */
106     final private void addChildNode( final PhylogenyNode child ) {
107         getDescendants().add( child );
108     }
109
110     @Override
111     // this is poor, as it only compares on names!
112     final public int compareTo( final PhylogenyNode o ) {
113         final PhylogenyNode n = o;
114         if ( ( getName() == null ) || ( n.getName() == null ) ) {
115             return 0;
116         }
117         return getName().compareTo( n.getName() );
118     }
119
120     // ---------------------------------------------------------
121     // Copy and delete Nodes, copy subtress
122     // ---------------------------------------------------------
123     /**
124      * Returns a new PhylogenyNode which has its data copied from this
125      * PhylogenyNode. Links to the other Nodes in the same Phylogeny are NOT
126      * copied (e.g. _link to _parent). Field "_link" IS copied.
127      * 
128      * @see #getLink() 
129      */
130     final public PhylogenyNode copyNodeData() {
131         final PhylogenyNode node = new PhylogenyNode();
132         PhylogenyNode.decreaseNodeCount();
133         node._id = _id;
134         node._sum_ext_nodes = _sum_ext_nodes;
135         node._indicator = _indicator;
136         node._x = _x;
137         node._y = _y;
138         node._distance_parent = _distance_parent;
139         node._collapse = _collapse;
140         node._link = _link;
141         if ( _node_data != null ) {
142             node._node_data = ( NodeData ) _node_data.copy();
143         }
144         if ( _branch_data != null ) {
145             node._branch_data = ( BranchData ) _branch_data.copy();
146         }
147         return node;
148     }
149
150     /**
151      * Returns a new PhylogenyNode which has the same data as this
152      * PhylogenyNode. Links to the other Nodes in the same Phylogeny are NOT
153      * copied (e.g. _link to _parent). Field "_link" IS copied.
154      * 
155      * @see #getLink() 
156      */
157     final public PhylogenyNode copyNodeDataShallow() {
158         final PhylogenyNode node = new PhylogenyNode();
159         PhylogenyNode.decreaseNodeCount();
160         node._id = _id;
161         node._sum_ext_nodes = _sum_ext_nodes;
162         node._indicator = _indicator;
163         node._x = _x;
164         node._y = _y;
165         node._distance_parent = _distance_parent;
166         node._collapse = _collapse;
167         node._link = _link;
168         node._node_data = _node_data;
169         node._branch_data = _branch_data;
170         return node;
171     }
172
173     @Override
174     /**
175      * Based on node name, sequence, and taxonomy.
176      * 
177      * 
178      */
179     final public boolean equals( final Object o ) {
180         if ( this == o ) {
181             return true;
182         }
183         else if ( o == null ) {
184             return false;
185         }
186         else if ( o.getClass() != this.getClass() ) {
187             throw new IllegalArgumentException( "attempt to check [" + this.getClass() + "] equality to " + o + " ["
188                     + o.getClass() + "]" );
189         }
190         else {
191             final PhylogenyNode other = ( PhylogenyNode ) o;
192             if ( !getName().equals( other.getName() ) ) {
193                 return false;
194             }
195             final NodeData this_data = getNodeData();
196             final NodeData other_data = other.getNodeData();
197             if ( ( this_data.isHasSequence() && other_data.isHasSequence() )
198                     && ( this_data.isHasTaxonomy() && other_data.isHasTaxonomy() ) ) {
199                 return ( this_data.getTaxonomy().isEqual( other_data.getTaxonomy() ) && this_data.getSequence()
200                         .isEqual( other_data.getSequence() ) );
201             }
202             else if ( this_data.isHasTaxonomy() && other_data.isHasTaxonomy() ) {
203                 return ( this_data.getTaxonomy().isEqual( other_data.getTaxonomy() ) );
204             }
205             else if ( this_data.isHasSequence() && other_data.isHasSequence() ) {
206                 return ( this_data.getSequence().isEqual( other_data.getSequence() ) );
207             }
208             else if ( getName().length() > 0 ) {
209                 // Node name is not empty, and equal.
210                 return true;
211             }
212             else {
213                 return false;
214             }
215         }
216     }
217
218     // ---------------------------------------------------------
219     // Obtaining of Nodes
220     // ---------------------------------------------------------
221     /**
222      * Returns a List containing references to all external children of this
223      * PhylogenyNode.
224      * 
225      * @return List of references to external Nodes
226      */
227     final public List<PhylogenyNode> getAllExternalDescendants() {
228         final List<PhylogenyNode> nodes = new ArrayList<PhylogenyNode>();
229         if ( isExternal() ) {
230             nodes.add( this );
231             return nodes;
232         }
233         PhylogenyNode node1 = this;
234         while ( !node1.isExternal() ) {
235             node1 = node1.getFirstChildNode();
236         }
237         PhylogenyNode node2 = this;
238         while ( !node2.isExternal() ) {
239             node2 = node2.getLastChildNode();
240         }
241         while ( node1 != node2 ) {
242             nodes.add( node1 );
243             node1 = node1.getNextExternalNode();
244         }
245         nodes.add( node2 );
246         return nodes;
247     }
248
249     /**
250      * Returns a List containing references to all names of the external
251      * children of this PhylogenyNode.
252      * 
253      * @return List of references to names of external Nodes
254      */
255     final public List<String> getAllExternalDescendantsNames() {
256         final List<PhylogenyNode> c = getAllExternalDescendants();
257         final List<String> n = new ArrayList<String>( c.size() );
258         for( final PhylogenyNode phylogenyNode : c ) {
259             n.add( phylogenyNode.getName() );
260         }
261         return n;
262     }
263
264     final public BranchData getBranchData() {
265         if ( _branch_data == null ) {
266             _branch_data = new BranchData();
267         }
268         return _branch_data;
269     }
270
271     final BranchData getBranchDataDirectly() {
272         return _branch_data;
273     }
274
275     /**
276      * This return child node n of this node.
277      * 
278      * @param n
279      *            the index of the child to get
280      * @return the child node with index n
281      * @throws IllegalArgumentException
282      *             if n is out of bounds
283      */
284     @Override
285     final public PhylogenyNode getChildNode( final int i ) {
286         if ( isExternal() ) {
287             throw new UnsupportedOperationException( "attempt to get the child node of an external node." );
288         }
289         if ( ( i >= getNumberOfDescendants() ) || ( i < 0 ) ) {
290             throw new IllegalArgumentException( "attempt to get child node " + i + " of a node with "
291                     + getNumberOfDescendants() + " child nodes" );
292         }
293         return getDescendants().get( i );
294     }
295
296     /**
297      * Convenience method. Returns the first child PhylogenyNode of this
298      * PhylogenyNode.
299      */
300     final public PhylogenyNode getChildNode1() {
301         return getChildNode( 0 );
302     }
303
304     /**
305      * Convenience method. Returns the second child PhylogenyNode of this
306      * PhylogenyNode.
307      * <p>
308      * [last modified May 18, 2005 by CMZ]
309      */
310     final public PhylogenyNode getChildNode2() {
311         return getChildNode( 1 );
312     }
313
314     /**
315      * This gets the child node index of this node.
316      * <p>
317      * 
318      * @return the child node index of this node
319      * @throws UnsupportedOperationException
320      *             if this node is a root node
321      */
322     final public int getChildNodeIndex() {
323         return getChildNodeIndex( getParent() );
324     }
325
326     /**
327      * This gets the child node index of this node, given that parent is its
328      * parent
329      * <p>
330      * [last modified Aug 14, 2006 by CMZ]
331      * 
332      * @return the child node index of this node
333      * @throws UnsupportedOperationException
334      *             if this node is a root node
335      */
336     final public int getChildNodeIndex( final PhylogenyNode parent ) {
337         if ( isRoot() ) {
338             throw new UnsupportedOperationException( "Cannot get the child index for a root node." );
339         }
340         for( int i = 0; i < parent.getNumberOfDescendants(); ++i ) {
341             if ( parent.getChildNode( i ) == this ) {
342                 return i;
343             }
344         }
345         throw new RuntimeException( "Unexpected exception: Could not determine the child index for node: " + this );
346     }
347
348     final public List<PhylogenyNode> getDescendants() {
349         if ( _descendants == null ) {
350             _descendants = new ArrayList<PhylogenyNode>();
351         }
352         return _descendants;
353     }
354
355     /**
356      * Returns the length of the branch leading to the _parent of this
357      * PhylogenyNode (double).
358      */
359     @Override
360     final public double getDistanceToParent() {
361         return _distance_parent;
362     }
363
364     /**
365      * Convenience method. Returns the first child node of this node.
366      * <p>
367      * [last modified May 18, 2005 by CMZ]
368      * 
369      * @return the first child node of this node
370      */
371     public final PhylogenyNode getFirstChildNode() {
372         return getChildNode( 0 );
373     }
374
375     /**
376      * Returns the _indicator value of this PhylogenyNode.
377      */
378     public final byte getIndicator() {
379         return _indicator;
380     }
381
382     /**
383      * Convenience method. Returns the last child node of this node.
384      * <p>
385      * [last modified May 18, 2005 by CMZ]
386      * 
387      * @return the last child node of this node
388      */
389     public final PhylogenyNode getLastChildNode() {
390         return getChildNode( getNumberOfDescendants() - 1 );
391     }
392
393     /**
394      * Returns a refernce to the linked PhylogenyNode of this PhylogenyNode.
395      * Currently, this method is only used for the speciation-_duplication
396      * assignment algorithms.
397      */
398     public final PhylogenyNode getLink() {
399         return _link;
400     }
401
402     /**
403      * Returns a refernce to the next external PhylogenyNode of this
404      * PhylogenyNode. TODO should be in Phylogeny. Returns null if no next
405      * external node is available.
406      */
407     public final PhylogenyNode getNextExternalNode() {
408         if ( isInternal() ) {
409             throw new UnsupportedOperationException( "attempt to get next external node of an internal node" );
410         }
411         else if ( isLastExternalNode() ) {
412             return null;
413         }
414         int index = getChildNodeIndex();
415         PhylogenyNode previous_node = this;
416         PhylogenyNode current_node = getParent();
417         while ( !current_node.isRoot()
418                 && ( ( current_node.getNumberOfDescendants() == 1 ) || previous_node.isLastChildNode() ) ) {
419             index = current_node.getChildNodeIndex();
420             previous_node = current_node;
421             current_node = current_node.getParent();
422         }
423         current_node = current_node.getChildNode( index + 1 );
424         while ( current_node.isInternal() ) {
425             current_node = current_node.getFirstChildNode();
426         }
427         return current_node;
428     }
429
430     public final PhylogenyNode getNextExternalNodeWhileTakingIntoAccountCollapsedNodes() {
431         //TODO work on me ~~
432         if ( isInternal() && !isCollapse() ) {
433             throw new UnsupportedOperationException( "attempt to get next external node of an uncollapsed internal node" );
434         }
435         if ( isRoot() ) {
436             return null;
437         }
438         if ( getParent().isCollapse() ) {
439             throw new UnsupportedOperationException( "attempt to get next external node of node with a collapsed parent" );
440         }
441         // This checks if last node.
442         PhylogenyNode n = this;
443         boolean last = true;
444         while ( !n.isRoot() ) {
445             if ( !n.isLastChildNode() ) {
446                 last = false;
447                 break;
448             }
449             n = n.getParent();
450         }
451         if ( last ) {
452             return null;
453         }
454         int index = getChildNodeIndex();
455         PhylogenyNode previous_node = this;
456         PhylogenyNode current_node = getParent();
457         while ( !current_node.isRoot()
458                 && ( current_node.isCollapse() || ( current_node.getNumberOfDescendants() == 1 ) || previous_node
459                         .isLastChildNode() ) ) {
460             index = current_node.getChildNodeIndex();
461             previous_node = current_node;
462             current_node = current_node.getParent();
463         }
464         if ( index < ( current_node.getNumberOfDescendants() - 1 ) ) {
465             current_node = current_node.getChildNode( index + 1 );
466         }
467         while ( current_node.isInternal() && !current_node.isCollapse() ) {
468             current_node = current_node.getFirstChildNode();
469         }
470         return current_node;
471     }
472
473     public final NodeData getNodeData() {
474         if ( _node_data == null ) {
475             _node_data = new NodeData();
476         }
477         return _node_data;
478     }
479
480     final NodeData getNodeDataDirectly() {
481         return _node_data;
482     }
483
484     // ---------------------------------------------------------
485     // Set and get methods for Nodes
486     // ---------------------------------------------------------
487     /**
488      * Returns the ID (int) of this PhylogenyNode.
489      */
490     @Override
491     final public int getId() {
492         return _id;
493     }
494
495     @Override
496     final public String getName() {
497         return getNodeData().getNodeName();
498     }
499
500     final public List<PhylogenyNode> getAllDescendants() {
501         return _descendants;
502     }
503
504     final public int getNumberOfDescendants() {
505         if ( _descendants == null ) {
506             return 0;
507         }
508         return _descendants.size();
509     }
510
511     /**
512      * Returns the total number of external Nodes originating from this
513      * PhylogenyNode (int).
514      */
515     final public int getNumberOfExternalNodes() {
516         return _sum_ext_nodes;
517     }
518
519     final public int getNumberOfParents() {
520         return 1;
521     }
522
523     /**
524      * Returns a refernce to the parent PhylogenyNode of this PhylogenyNode.
525      */
526     final public PhylogenyNode getParent() {
527         return _parent;
528     }
529
530     /**
531      * Returns a refernce to the next external PhylogenyNode of this
532      * PhylogenyNode. TODO should be in Phylogeny. Returns null if no next
533      * external node is available.
534      */
535     final public PhylogenyNode getPreviousExternalNode() {
536         if ( isInternal() ) {
537             throw new UnsupportedOperationException( "Cannot get the previous external node for an internal node." );
538         }
539         else if ( isRoot() /* TODO && tree is rooted */) {
540             throw new UnsupportedOperationException( "Cannot get the previous external node for a root node." );
541         }
542         else if ( isFirstExternalNode() ) {
543             throw new UnsupportedOperationException( "Attempt to get previous external node of the first external node." );
544         }
545         int index = getChildNodeIndex();
546         PhylogenyNode previous_node = this;
547         PhylogenyNode current_node = getParent();
548         while ( !current_node.isRoot()
549                 && ( ( current_node.getNumberOfDescendants() == 1 ) || previous_node.isFirstChildNode() ) ) {
550             index = current_node.getChildNodeIndex();
551             previous_node = current_node;
552             current_node = current_node.getParent();
553         }
554         current_node = current_node.getChildNode( index - 1 );
555         while ( current_node.isInternal() ) {
556             current_node = current_node.getLastChildNode();
557         }
558         return current_node;
559     }
560
561     /**
562      * Used for drawing of Trees.
563      */
564     final public float getXcoord() {
565         return _x;
566     }
567
568     final public float getXSecondary() {
569         return _x_secondary;
570     }
571
572     /**
573      * Used for drawing of Trees.
574      */
575     final public float getYcoord() {
576         return _y;
577     }
578
579     final public float getYSecondary() {
580         return _y_secondary;
581     }
582
583     @Override
584     final public int hashCode() {
585         final NodeData data = getNodeData();
586         if ( ( getName().length() < 1 ) && !data.isHasSequence() && !data.isHasTaxonomy() ) {
587             return super.hashCode();
588         }
589         int result = getName().hashCode();
590         if ( data.isHasSequence() ) {
591             result ^= data.getSequence().hashCode();
592         }
593         if ( data.isHasTaxonomy() ) {
594             result ^= data.getTaxonomy().hashCode();
595         }
596         return result;
597     }
598
599     // final private void init() {
600     //_descendants = new ArrayList<PhylogenyNode>();
601     //  _parent = null; //TODO not needed?
602     //  _id = 0; //TODO not needed?
603     //initializeData(); //TODO not needed?
604     //}
605     /**
606      * Deletes data of this PhylogenyNode. Links to the other Nodes in the
607      * Phylogeny, the ID and the sum of external nodes are NOT deleted. Field
608      * "_link" (_link to Nodes in other Phylogeny) IS deleted.
609      * 
610      * @see #getLink() (Last modified: 12/20/03)
611      */
612     //    final private void initializeData() {
613     //        _indicator = 0;
614     //        _x = 0;
615     //        _y = 0;
616     //        //_node_name = "";
617     //        _distance_parent = PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT;
618     //        _collapse = false;
619     //        _link = null;
620     //        _branch_data = null;
621     //        _node_data = null;
622     //    }
623     /**
624      * Returns whether this PhylogenyNode should be drawn as collapsed.
625      */
626     final public boolean isCollapse() {
627         return _collapse;
628     }
629
630     /**
631      * Returns true if this PhylogenyNode represents a _duplication event, false
632      * otherwise.
633      */
634     final public boolean isDuplication() {
635         return getNodeData().isHasEvent() && getNodeData().getEvent().isDuplication();
636     }
637
638     /**
639      * Checks whether this PhylogenyNode is external (tip).
640      * 
641      * @return true if this PhylogenyNode is external, false otherwise
642      */
643     final public boolean isExternal() {
644         if ( _descendants == null ) {
645             return true;
646         }
647         return ( getNumberOfDescendants() < 1 );
648     }
649
650     /**
651      * DOCUMENT ME!
652      * 
653      * @return DOCUMENT ME!
654      */
655     final public boolean isFirstChildNode() {
656         if ( isRoot() /* and tree is rooted TODO */) {
657             throw new UnsupportedOperationException( "Cannot determine whether the root is the first child node of its _parent." );
658         }
659         return ( getChildNodeIndex() == 0 );
660     }
661
662     /**
663      * DOCUMENT ME!
664      * 
665      * @return DOCUMENT ME!
666      */
667     final public boolean isFirstExternalNode() {
668         if ( isInternal() ) {
669             return false;
670         }
671         PhylogenyNode node = this;
672         while ( !node.isRoot() ) {
673             if ( !node.isFirstChildNode() ) {
674                 return false;
675             }
676             node = node.getParent();
677         }
678         return true;
679     }
680
681     /**
682      * Returns whether a _duplication or speciation event has been assigned for
683      * this PhylogenyNode.
684      */
685     final public boolean isHasAssignedEvent() {
686         if ( !getNodeData().isHasEvent() ) {
687             return false;
688         }
689         if ( ( getNodeData().getEvent() ).isUnassigned() ) {
690             return false;
691         }
692         return true;
693     }
694
695     /**
696      * Checks whether this PhylogenyNode is internal (tip).
697      * 
698      * @return true if this PhylogenyNode is external, false otherwise
699      */
700     final public boolean isInternal() {
701         return ( !isExternal() );
702     }
703
704     /**
705      * Returns true if this node is the last child node of its _parent.
706      * <p>
707      * [last modified June 01, 2005 by CMZ]
708      * 
709      * @return true if this node is the last child node of its _parent, false
710      *         otherwise
711      */
712     final public boolean isLastChildNode() {
713         if ( isRoot() /* and tree is rooted TODO */) {
714             throw new UnsupportedOperationException( "Cannot determine whether the root is the last child node of its _parent." );
715         }
716         return ( getChildNodeIndex() == ( getParent().getNumberOfDescendants() - 1 ) );
717     }
718
719     /**
720      * DOCUMENT ME!
721      * 
722      * @return DOCUMENT ME!
723      */
724     final public boolean isLastExternalNode() {
725         if ( isInternal() ) {
726             return false;
727         }
728         PhylogenyNode node = this;
729         while ( !node.isRoot() ) {
730             if ( !node.isLastChildNode() ) {
731                 return false;
732             }
733             node = node.getParent();
734         }
735         return true;
736     }
737
738     public final int calculateDepth() {
739         PhylogenyNode n = this;
740         int steps = 0;
741         while ( n._parent != null ) {
742             steps++;
743             n = n._parent;
744         }
745         return steps;
746     }
747
748     public final double calculateDistanceToRoot() {
749         PhylogenyNode n = this;
750         double d = 0.0;
751         while ( n._parent != null ) {
752             if ( n._distance_parent > 0.0 ) {
753                 d += n._distance_parent;
754             }
755             n = n._parent;
756         }
757         return d;
758     }
759
760     /**
761      * Checks whether this PhylogenyNode is a root.
762      * 
763      * @return true if this PhylogenyNode is the root, false otherwise
764      */
765     final public boolean isRoot() {
766         return _parent == null;
767     }
768
769     final public boolean isSpeciation() {
770         return getNodeData().isHasEvent() && getNodeData().getEvent().isSpeciation();
771     }
772
773     // ---------------------------------------------------------
774     // Basic printing
775     // ---------------------------------------------------------
776     /**
777      * Prints to the console the subtree originating from this PhylogenyNode in
778      * preorder.
779      */
780     public void preorderPrint() {
781         System.out.println( this + "\n" );
782         if ( isInternal() ) {
783             for( int i = 0; i < getNumberOfDescendants(); ++i ) {
784                 getChildNode( i ).preorderPrint();
785             }
786         }
787     }
788
789     final public void removeChildNode( final int i ) {
790         if ( isExternal() ) {
791             throw new UnsupportedOperationException( "cannot get the child node for a external node." );
792         }
793         if ( ( i >= getNumberOfDescendants() ) || ( i < 0 ) ) {
794             throw new IllegalArgumentException( "attempt to get child node " + i + " of a node with "
795                     + getNumberOfDescendants() + " child nodes." );
796         }
797         getDescendants().remove( i );
798     }
799
800     final public void removeChildNode( final PhylogenyNode remove_me ) {
801         removeChildNode( remove_me.getChildNodeIndex() );
802     }
803
804     final public void setBranchData( final BranchData branch_data ) {
805         _branch_data = branch_data;
806     }
807
808     /**
809      * Sets the first child PhylogenyNode of this PhylogenyNode to n.
810      */
811     final public void setChild1( final PhylogenyNode n ) {
812         setChildNode( 0, n );
813     }
814
815     /**
816      * Sets the second child PhylogenyNode of this PhylogenyNode to n.
817      */
818     final public void setChild2( final PhylogenyNode n ) {
819         setChildNode( 1, n );
820     }
821
822     /**
823      * Inserts PhylogenyNode n at the specified position i into the list of
824      * child nodes. This does not allow null slots in the list of child nodes:
825      * If i is larger than the number of child nodes, n is just added to the
826      * list, not place at index i.
827      * 
828      * @param i
829      *            the index of position where to add the child
830      * @param n
831      *            the PhylogenyNode to add
832      */
833     final public void setChildNode( final int i, final PhylogenyNode node ) {
834         node.setParent( this );
835         if ( getNumberOfDescendants() <= i ) {
836             addChildNode( node );
837         }
838         else {
839             getDescendants().set( i, node );
840         }
841     }
842
843     final void setChildNodeOnly( final int i, final PhylogenyNode node ) {
844         if ( getNumberOfDescendants() <= i ) {
845             addChildNode( node );
846         }
847         else {
848             getDescendants().set( i, node );
849         }
850     }
851
852     /**
853      * Sets whether this PhylogenyNode should be drawn as collapsed.
854      */
855     final public void setCollapse( final boolean b ) {
856         _collapse = b;
857     }
858
859     /**
860      * Sets the length of the branch leading to the _parent of this
861      * PhylogenyNode to double d.
862      */
863     @Override
864     final public void setDistanceToParent( final double d ) {
865         _distance_parent = d;
866     }
867
868     /**
869      * Sets the _indicator value of this PhylogenyNode to i.
870      */
871     final public void setIndicator( final byte i ) {
872         _indicator = i;
873     }
874
875     // --------------------------------------------------------------------
876     // Adjust methods (related to Phylogeny construction and
877     // Phylogeny modification)
878     // --------------------------------------------------------------------
879     /**
880      * Sets the indicators of all the children of this PhylogenyNode to zero.
881      */
882     final void setIndicatorsToZero() {
883         for( final PreorderTreeIterator it = new PreorderTreeIterator( this ); it.hasNext(); ) {
884             it.next().setIndicator( ( byte ) 0 );
885         }
886     }
887
888     /**
889      * Sets the linked PhylogenyNode of this PhylogenyNode to n. Currently, this
890      * method is only used for the speciation-_duplication assignment
891      * algorithms.
892      */
893     final public void setLink( final PhylogenyNode n ) {
894         _link = n;
895     }
896
897     /**
898      * Sets the name of this node.
899      */
900     @Override
901     final public void setName( final String node_name ) {
902         getNodeData().setNodeName( node_name );
903     }
904
905     /**
906      * Sets the Id of this PhylogenyNode to i. In most cases, this number
907      * should not be set to values lower than getNodeCount() -- which this method
908      * does not allow.
909      */
910     synchronized final protected void setId( final int i ) {
911         if ( i < getNodeCount() ) {
912             throw new IllegalArgumentException( "attempt to set node id to a value less than total node count (thus violating the uniqueness of node ids)" );
913         }
914         _id = i;
915     }
916
917     /**
918      * Sets the _parent PhylogenyNode of this PhylogenyNode to n.
919      */
920     @Override
921     final public void setParent( final PhylogenyNode n ) {
922         _parent = n;
923     }
924
925     /**
926      * Sets the total number of external Nodes originating from this
927      * PhylogenyNode to i (int).
928      */
929     final public void setSumExtNodes( final int i ) {
930         if ( i < 0 ) {
931             throw new IllegalArgumentException( "attempt to set sum of external nodes to less than one" );
932         }
933         _sum_ext_nodes = i;
934     }
935
936     /**
937      * Used for drawing of Trees.
938      */
939     final public void setXcoord( final float x ) {
940         _x = x;
941     }
942
943     final public void setXSecondary( final float x_secondary ) {
944         _x_secondary = x_secondary;
945     }
946
947     // -----------
948     /**
949      * Used for drawing of Trees.
950      */
951     final public void setYcoord( final float y ) {
952         _y = y;
953     }
954
955     final public void setYSecondary( final float y_secondary ) {
956         _y_secondary = y_secondary;
957     }
958
959     // ---------------------------------------------------------
960     // Writing of Nodes to Strings
961     // ---------------------------------------------------------
962     final public String toNewHampshire( final boolean simple_nh,
963                                         final boolean write_distance_to_parent,
964                                         final NH_CONVERSION_SUPPORT_VALUE_STYLE svs ) {
965         final StringBuilder sb = new StringBuilder();
966         String data = "";
967         if ( ( svs == NH_CONVERSION_SUPPORT_VALUE_STYLE.AS_INTERNAL_NODE_NAMES ) && !isExternal() ) {
968             if ( getBranchData().isHasConfidences()
969                     && ( getBranchData().getConfidence( 0 ).getValue() != Confidence.CONFIDENCE_DEFAULT_VALUE ) ) {
970                 data = Confidence.FORMATTER.format( ForesterUtil
971                         .round( getBranchData().getConfidence( 0 ).getValue(),
972                                 PhyloXmlUtil.ROUNDING_DIGITS_FOR_PHYLOXML_DOUBLE_OUTPUT ) );
973             }
974         }
975         else if ( !ForesterUtil.isEmpty( getName() ) ) {
976             data = getName();
977         }
978         else if ( getNodeData().isHasTaxonomy() ) {
979             if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getTaxonomyCode() ) ) {
980                 data = getNodeData().getTaxonomy().getTaxonomyCode();
981             }
982             else if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getScientificName() ) ) {
983                 data = getNodeData().getTaxonomy().getScientificName();
984             }
985             else if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getCommonName() ) ) {
986                 data = getNodeData().getTaxonomy().getCommonName();
987             }
988             else if ( getNodeData().getTaxonomy().getTaxonomyCode() != null ) {
989                 data = getNodeData().getTaxonomy().getTaxonomyCode();
990             }
991         }
992         else if ( getNodeData().isHasSequence() ) {
993             if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getName() ) ) {
994                 data = getNodeData().getSequence().getName();
995             }
996         }
997         if ( data.length() > 0 ) {
998             data = ForesterUtil.replaceIllegalNhCharacters( data );
999             if ( simple_nh && ( data.length() > 10 ) ) {
1000                 data = data.substring( 0, 11 );
1001             }
1002             if ( ForesterUtil.isContainsParanthesesableNhCharacter( data ) ) {
1003                 sb.append( '\'' );
1004                 sb.append( data );
1005                 sb.append( '\'' );
1006             }
1007             else {
1008                 sb.append( data );
1009             }
1010         }
1011         if ( write_distance_to_parent && ( getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) ) {
1012             sb.append( ":" );
1013             sb.append( getDistanceToParent() );
1014         }
1015         if ( ( svs == NH_CONVERSION_SUPPORT_VALUE_STYLE.IN_SQUARE_BRACKETS ) && !isExternal()
1016                 && getBranchData().isHasConfidences()
1017                 && ( getBranchData().getConfidence( 0 ).getValue() != Confidence.CONFIDENCE_DEFAULT_VALUE ) ) {
1018             sb.append( "[" );
1019             sb.append( Confidence.FORMATTER.format( ForesterUtil
1020                     .round( getBranchData().getConfidence( 0 ).getValue(),
1021                             PhyloXmlUtil.ROUNDING_DIGITS_FOR_PHYLOXML_DOUBLE_OUTPUT ) ) );
1022             sb.append( "]" );
1023         }
1024         return sb.toString();
1025     }
1026
1027     /**
1028      * Swaps the the two childern of a PhylogenyNode node of this Phylogeny.
1029      */
1030     public final void swapChildren() throws RuntimeException {
1031         if ( isExternal() ) {
1032             throw new RuntimeException( "attempt to swap descendants of external node" );
1033         }
1034         if ( getNumberOfDescendants() != 2 ) {
1035             throw new RuntimeException( "attempt to swap descendants of node with " + getNumberOfDescendants()
1036                     + " descendants" );
1037         }
1038         final PhylogenyNode a = getChildNode( 0 );
1039         final PhylogenyNode b = getChildNode( 1 );
1040         setChildNode( 0, b );
1041         setChildNode( 1, a );
1042     }
1043
1044     /**
1045      * Converts this PhylogenyNode to a New Hampshire X (NHX) String
1046      * representation.
1047      */
1048     final public String toNewHampshireX() {
1049         final StringBuffer sb = new StringBuffer();
1050         final StringBuffer s_nhx = new StringBuffer();
1051         if ( !ForesterUtil.isEmpty( getName() ) ) {
1052             final String name = ForesterUtil.replaceIllegalNhCharacters( getName() );
1053             if ( ForesterUtil.isContainsParanthesesableNhCharacter( name ) ) {
1054                 sb.append( '\'' );
1055                 sb.append( name );
1056                 sb.append( '\'' );
1057             }
1058             else {
1059                 sb.append( name );
1060             }
1061         }
1062         if ( getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) {
1063             sb.append( ":" );
1064             sb.append( getDistanceToParent() );
1065         }
1066         if ( getNodeDataDirectly() != null ) {
1067             s_nhx.append( getNodeDataDirectly().toNHX() );
1068         }
1069         if ( getBranchDataDirectly() != null ) {
1070             s_nhx.append( getBranchDataDirectly().toNHX() );
1071         }
1072         if ( s_nhx.length() > 0 ) {
1073             sb.append( "[&&NHX" );
1074             sb.append( s_nhx );
1075             sb.append( "]" );
1076         }
1077         return sb.toString();
1078     }
1079
1080     @Override
1081     final public String toString() {
1082         final StringBuilder sb = new StringBuilder();
1083         if ( getNodeData().isHasTaxonomy() ) {
1084             if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getScientificName() ) ) {
1085                 sb.append( getNodeData().getTaxonomy().getScientificName() );
1086                 sb.append( " " );
1087             }
1088             else if ( ( sb.length() <= 1 ) && !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getTaxonomyCode() ) ) {
1089                 sb.append( getNodeData().getTaxonomy().getTaxonomyCode() );
1090                 sb.append( " " );
1091             }
1092             else if ( getNodeData().getTaxonomy().getIdentifier() != null ) {
1093                 sb.append( getNodeData().getTaxonomy().getIdentifier().toString() );
1094                 sb.append( " " );
1095             }
1096         }
1097         if ( getNodeData().isHasSequence() ) {
1098             if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getName() ) ) {
1099                 sb.append( getNodeData().getSequence().getName() );
1100                 sb.append( " " );
1101             }
1102             if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getSymbol() ) ) {
1103                 sb.append( getNodeData().getSequence().getSymbol() );
1104                 sb.append( " " );
1105             }
1106             if ( getNodeData().getSequence().getAccession() != null ) {
1107                 sb.append( getNodeData().getSequence().getAccession().toString() );
1108                 sb.append( " " );
1109             }
1110         }
1111         if ( ( sb.length() <= 1 ) && !ForesterUtil.isEmpty( getName() ) ) {
1112             sb.append( getName() );
1113             sb.append( " " );
1114         }
1115         if ( sb.length() <= 1 ) {
1116             sb.append( "[" );
1117             sb.append( getId() );
1118             sb.append( "]" );
1119         }
1120         return sb.toString().trim();
1121     }
1122
1123     /**
1124      * Decreases the total number of all Nodes created so far by one.
1125      */
1126     final static synchronized void decreaseNodeCount() {
1127         --PhylogenyNode._node_count;
1128     }
1129
1130     /**
1131      * Returns the total number of all Nodes created so far.
1132      * 
1133      * @return total number of Nodes (int)
1134      */
1135     synchronized final public static int getNodeCount() {
1136         return PhylogenyNode._node_count;
1137     }
1138
1139     /**
1140      * Increases the total number of all Nodes created so far by one.
1141      */
1142     synchronized final private static void increaseNodeCount() {
1143         ++PhylogenyNode._node_count;
1144     }
1145
1146     /**
1147      * Sets the total number of all Nodes created so far to i (int).
1148      */
1149     synchronized final static void setNodeCount( final int i ) {
1150         PhylogenyNode._node_count = i;
1151     }
1152
1153     public static PhylogenyNode createInstanceFromNhxString( final String nhx ) throws NHXFormatException,
1154             PhyloXmlDataFormatException {
1155         return new PhylogenyNode( nhx, PhylogenyMethods.TAXONOMY_EXTRACTION.NO, false );
1156     }
1157
1158     public static PhylogenyNode createInstanceFromNhxString( final String nhx,
1159                                                              final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction )
1160             throws NHXFormatException, PhyloXmlDataFormatException {
1161         return new PhylogenyNode( nhx, taxonomy_extraction, false );
1162     }
1163
1164     public static PhylogenyNode createInstanceFromNhxString( final String nhx,
1165                                                              final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction,
1166                                                              final boolean replace_underscores )
1167             throws NHXFormatException, PhyloXmlDataFormatException {
1168         return new PhylogenyNode( nhx, taxonomy_extraction, replace_underscores );
1169     }
1170
1171     private PhylogenyNode( final String nhx,
1172                            final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction,
1173                            final boolean replace_underscores ) throws NHXFormatException, PhyloXmlDataFormatException {
1174         //  init();
1175         NHXParser.parseNHX( nhx, this, taxonomy_extraction, replace_underscores );
1176         setId( PhylogenyNode.getNodeCount() );
1177         PhylogenyNode.increaseNodeCount();
1178         setSumExtNodes( 1 ); // For ext node, this number is 1 (not 0!!)
1179     }
1180 }