taxonomy code more stringent now
[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     /**
496      * Returns the name of this node.
497      */
498     @Override
499     final public String getName() {
500         return getNodeData().getNodeName();
501     }
502
503     final public int getNumberOfDescendants() {
504         if ( _descendants == null ) {
505             return 0;
506         }
507         return _descendants.size();
508     }
509
510     /**
511      * Returns the total number of external Nodes originating from this
512      * PhylogenyNode (int).
513      */
514     final public int getNumberOfExternalNodes() {
515         return _sum_ext_nodes;
516     }
517
518     final public int getNumberOfParents() {
519         return 1;
520     }
521
522     /**
523      * Returns a refernce to the parent PhylogenyNode of this PhylogenyNode.
524      */
525     final public PhylogenyNode getParent() {
526         return _parent;
527     }
528
529     /**
530      * Returns a refernce to the next external PhylogenyNode of this
531      * PhylogenyNode. TODO should be in Phylogeny. Returns null if no next
532      * external node is available.
533      */
534     final public PhylogenyNode getPreviousExternalNode() {
535         if ( isInternal() ) {
536             throw new UnsupportedOperationException( "Cannot get the previous external node for an internal node." );
537         }
538         else if ( isRoot() /* TODO && tree is rooted */) {
539             throw new UnsupportedOperationException( "Cannot get the previous external node for a root node." );
540         }
541         else if ( isFirstExternalNode() ) {
542             throw new UnsupportedOperationException( "Attempt to get previous external node of the first external node." );
543         }
544         int index = getChildNodeIndex();
545         PhylogenyNode previous_node = this;
546         PhylogenyNode current_node = getParent();
547         while ( !current_node.isRoot()
548                 && ( ( current_node.getNumberOfDescendants() == 1 ) || previous_node.isFirstChildNode() ) ) {
549             index = current_node.getChildNodeIndex();
550             previous_node = current_node;
551             current_node = current_node.getParent();
552         }
553         current_node = current_node.getChildNode( index - 1 );
554         while ( current_node.isInternal() ) {
555             current_node = current_node.getLastChildNode();
556         }
557         return current_node;
558     }
559
560     /**
561      * Used for drawing of Trees.
562      */
563     final public float getXcoord() {
564         return _x;
565     }
566
567     final public float getXSecondary() {
568         return _x_secondary;
569     }
570
571     /**
572      * Used for drawing of Trees.
573      */
574     final public float getYcoord() {
575         return _y;
576     }
577
578     final public float getYSecondary() {
579         return _y_secondary;
580     }
581
582     @Override
583     final public int hashCode() {
584         final NodeData data = getNodeData();
585         if ( ( getName().length() < 1 ) && !data.isHasSequence() && !data.isHasTaxonomy() ) {
586             return super.hashCode();
587         }
588         int result = getName().hashCode();
589         if ( data.isHasSequence() ) {
590             result ^= data.getSequence().hashCode();
591         }
592         if ( data.isHasTaxonomy() ) {
593             result ^= data.getTaxonomy().hashCode();
594         }
595         return result;
596     }
597
598     // final private void init() {
599     //_descendants = new ArrayList<PhylogenyNode>();
600     //  _parent = null; //TODO not needed?
601     //  _id = 0; //TODO not needed?
602     //initializeData(); //TODO not needed?
603     //}
604     /**
605      * Deletes data of this PhylogenyNode. Links to the other Nodes in the
606      * Phylogeny, the ID and the sum of external nodes are NOT deleted. Field
607      * "_link" (_link to Nodes in other Phylogeny) IS deleted.
608      * 
609      * @see #getLink() (Last modified: 12/20/03)
610      */
611     //    final private void initializeData() {
612     //        _indicator = 0;
613     //        _x = 0;
614     //        _y = 0;
615     //        //_node_name = "";
616     //        _distance_parent = PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT;
617     //        _collapse = false;
618     //        _link = null;
619     //        _branch_data = null;
620     //        _node_data = null;
621     //    }
622     /**
623      * Returns whether this PhylogenyNode should be drawn as collapsed.
624      */
625     final public boolean isCollapse() {
626         return _collapse;
627     }
628
629     /**
630      * Returns true if this PhylogenyNode represents a _duplication event, false
631      * otherwise.
632      */
633     final public boolean isDuplication() {
634         return getNodeData().isHasEvent() && getNodeData().getEvent().isDuplication();
635     }
636
637     /**
638      * Checks whether this PhylogenyNode is external (tip).
639      * 
640      * @return true if this PhylogenyNode is external, false otherwise
641      */
642     final public boolean isExternal() {
643         if ( _descendants == null ) {
644             return true;
645         }
646         return ( getNumberOfDescendants() < 1 );
647     }
648
649     /**
650      * DOCUMENT ME!
651      * 
652      * @return DOCUMENT ME!
653      */
654     final public boolean isFirstChildNode() {
655         if ( isRoot() /* and tree is rooted TODO */) {
656             throw new UnsupportedOperationException( "Cannot determine whether the root is the first child node of its _parent." );
657         }
658         return ( getChildNodeIndex() == 0 );
659     }
660
661     /**
662      * DOCUMENT ME!
663      * 
664      * @return DOCUMENT ME!
665      */
666     final public boolean isFirstExternalNode() {
667         if ( isInternal() ) {
668             return false;
669         }
670         PhylogenyNode node = this;
671         while ( !node.isRoot() ) {
672             if ( !node.isFirstChildNode() ) {
673                 return false;
674             }
675             node = node.getParent();
676         }
677         return true;
678     }
679
680     /**
681      * Returns whether a _duplication or speciation event has been assigned for
682      * this PhylogenyNode.
683      */
684     final public boolean isHasAssignedEvent() {
685         if ( !getNodeData().isHasEvent() ) {
686             return false;
687         }
688         if ( ( getNodeData().getEvent() ).isUnassigned() ) {
689             return false;
690         }
691         return true;
692     }
693
694     /**
695      * Checks whether this PhylogenyNode is internal (tip).
696      * 
697      * @return true if this PhylogenyNode is external, false otherwise
698      */
699     final public boolean isInternal() {
700         return ( !isExternal() );
701     }
702
703     /**
704      * Returns true if this node is the last child node of its _parent.
705      * <p>
706      * [last modified June 01, 2005 by CMZ]
707      * 
708      * @return true if this node is the last child node of its _parent, false
709      *         otherwise
710      */
711     final public boolean isLastChildNode() {
712         if ( isRoot() /* and tree is rooted TODO */) {
713             throw new UnsupportedOperationException( "Cannot determine whether the root is the last child node of its _parent." );
714         }
715         return ( getChildNodeIndex() == ( getParent().getNumberOfDescendants() - 1 ) );
716     }
717
718     /**
719      * DOCUMENT ME!
720      * 
721      * @return DOCUMENT ME!
722      */
723     final public boolean isLastExternalNode() {
724         if ( isInternal() ) {
725             return false;
726         }
727         PhylogenyNode node = this;
728         while ( !node.isRoot() ) {
729             if ( !node.isLastChildNode() ) {
730                 return false;
731             }
732             node = node.getParent();
733         }
734         return true;
735     }
736
737     /**
738      * Checks whether this PhylogenyNode is a root.
739      * 
740      * @return true if this PhylogenyNode is the root, false otherwise
741      */
742     final public boolean isRoot() {
743         return _parent == null;
744     }
745
746     final public boolean isSpeciation() {
747         return getNodeData().isHasEvent() && getNodeData().getEvent().isSpeciation();
748     }
749
750     // ---------------------------------------------------------
751     // Basic printing
752     // ---------------------------------------------------------
753     /**
754      * Prints to the console the subtree originating from this PhylogenyNode in
755      * preorder.
756      */
757     public void preorderPrint() {
758         System.out.println( this + "\n" );
759         if ( isInternal() ) {
760             for( int i = 0; i < getNumberOfDescendants(); ++i ) {
761                 getChildNode( i ).preorderPrint();
762             }
763         }
764     }
765
766     final public void removeChildNode( final int i ) {
767         if ( isExternal() ) {
768             throw new UnsupportedOperationException( "cannot get the child node for a external node." );
769         }
770         if ( ( i >= getNumberOfDescendants() ) || ( i < 0 ) ) {
771             throw new IllegalArgumentException( "attempt to get child node " + i + " of a node with "
772                     + getNumberOfDescendants() + " child nodes." );
773         }
774         getDescendants().remove( i );
775     }
776
777     final public void removeChildNode( final PhylogenyNode remove_me ) {
778         removeChildNode( remove_me.getChildNodeIndex() );
779     }
780
781     final public void setBranchData( final BranchData branch_data ) {
782         _branch_data = branch_data;
783     }
784
785     /**
786      * Sets the first child PhylogenyNode of this PhylogenyNode to n.
787      */
788     final public void setChild1( final PhylogenyNode n ) {
789         setChildNode( 0, n );
790     }
791
792     /**
793      * Sets the second child PhylogenyNode of this PhylogenyNode to n.
794      */
795     final public void setChild2( final PhylogenyNode n ) {
796         setChildNode( 1, n );
797     }
798
799     /**
800      * Inserts PhylogenyNode n at the specified position i into the list of
801      * child nodes. This does not allow null slots in the list of child nodes:
802      * If i is larger than the number of child nodes, n is just added to the
803      * list, not place at index i.
804      * 
805      * @param i
806      *            the index of position where to add the child
807      * @param n
808      *            the PhylogenyNode to add
809      */
810     final public void setChildNode( final int i, final PhylogenyNode node ) {
811         node.setParent( this );
812         if ( getNumberOfDescendants() <= i ) {
813             addChildNode( node );
814         }
815         else {
816             getDescendants().set( i, node );
817         }
818     }
819
820     final void setChildNodeOnly( final int i, final PhylogenyNode node ) {
821         if ( getNumberOfDescendants() <= i ) {
822             addChildNode( node );
823         }
824         else {
825             getDescendants().set( i, node );
826         }
827     }
828
829     /**
830      * Sets whether this PhylogenyNode should be drawn as collapsed.
831      */
832     final public void setCollapse( final boolean b ) {
833         _collapse = b;
834     }
835
836     /**
837      * Sets the length of the branch leading to the _parent of this
838      * PhylogenyNode to double d.
839      */
840     @Override
841     final public void setDistanceToParent( final double d ) {
842         _distance_parent = d;
843     }
844
845     /**
846      * Sets the _indicator value of this PhylogenyNode to i.
847      */
848     final public void setIndicator( final byte i ) {
849         _indicator = i;
850     }
851
852     // --------------------------------------------------------------------
853     // Adjust methods (related to Phylogeny construction and
854     // Phylogeny modification)
855     // --------------------------------------------------------------------
856     /**
857      * Sets the indicators of all the children of this PhylogenyNode to zero.
858      */
859     final void setIndicatorsToZero() {
860         for( final PreorderTreeIterator it = new PreorderTreeIterator( this ); it.hasNext(); ) {
861             it.next().setIndicator( ( byte ) 0 );
862         }
863     }
864
865     /**
866      * Sets the linked PhylogenyNode of this PhylogenyNode to n. Currently, this
867      * method is only used for the speciation-_duplication assignment
868      * algorithms.
869      */
870     final public void setLink( final PhylogenyNode n ) {
871         _link = n;
872     }
873
874     /**
875      * Sets the name of this node.
876      */
877     @Override
878     final public void setName( final String node_name ) {
879         getNodeData().setNodeName( node_name );
880     }
881
882     /**
883      * Sets the Id of this PhylogenyNode to i. In most cases, this number
884      * should not be set to values lower than getNodeCount() -- which this method
885      * does not allow.
886      */
887     synchronized final protected void setId( final int i ) {
888         if ( i < getNodeCount() ) {
889             throw new IllegalArgumentException( "attempt to set node id to a value less than total node count (thus violating the uniqueness of node ids)" );
890         }
891         _id = i;
892     }
893
894     /**
895      * Sets the _parent PhylogenyNode of this PhylogenyNode to n.
896      */
897     @Override
898     final public void setParent( final PhylogenyNode n ) {
899         _parent = n;
900     }
901
902     /**
903      * Sets the total number of external Nodes originating from this
904      * PhylogenyNode to i (int).
905      */
906     final public void setSumExtNodes( final int i ) {
907         if ( i < 0 ) {
908             throw new IllegalArgumentException( "attempt to set sum of external nodes to less than one" );
909         }
910         _sum_ext_nodes = i;
911     }
912
913     /**
914      * Used for drawing of Trees.
915      */
916     final public void setXcoord( final float x ) {
917         _x = x;
918     }
919
920     final public void setXSecondary( final float x_secondary ) {
921         _x_secondary = x_secondary;
922     }
923
924     // -----------
925     /**
926      * Used for drawing of Trees.
927      */
928     final public void setYcoord( final float y ) {
929         _y = y;
930     }
931
932     final public void setYSecondary( final float y_secondary ) {
933         _y_secondary = y_secondary;
934     }
935
936     // ---------------------------------------------------------
937     // Writing of Nodes to Strings
938     // ---------------------------------------------------------
939     final public String toNewHampshire( final boolean simple_nh,
940                                         final boolean write_distance_to_parent,
941                                         final NH_CONVERSION_SUPPORT_VALUE_STYLE svs ) {
942         final StringBuilder sb = new StringBuilder();
943         String data = "";
944         if ( ( svs == NH_CONVERSION_SUPPORT_VALUE_STYLE.AS_INTERNAL_NODE_NAMES ) && !isExternal() ) {
945             if ( getBranchData().isHasConfidences()
946                     && ( getBranchData().getConfidence( 0 ).getValue() != Confidence.CONFIDENCE_DEFAULT_VALUE ) ) {
947                 data = Confidence.FORMATTER.format( ForesterUtil
948                         .round( getBranchData().getConfidence( 0 ).getValue(),
949                                 PhyloXmlUtil.ROUNDING_DIGITS_FOR_PHYLOXML_DOUBLE_OUTPUT ) );
950             }
951         }
952         else if ( !ForesterUtil.isEmpty( getName() ) ) {
953             data = getName();
954         }
955         else if ( getNodeData().isHasTaxonomy() ) {
956             if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getTaxonomyCode() ) ) {
957                 data = getNodeData().getTaxonomy().getTaxonomyCode();
958             }
959             else if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getScientificName() ) ) {
960                 data = getNodeData().getTaxonomy().getScientificName();
961             }
962             else if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getCommonName() ) ) {
963                 data = getNodeData().getTaxonomy().getCommonName();
964             }
965             else if ( getNodeData().getTaxonomy().getTaxonomyCode() != null ) {
966                 data = getNodeData().getTaxonomy().getTaxonomyCode();
967             }
968         }
969         else if ( getNodeData().isHasSequence() ) {
970             if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getName() ) ) {
971                 data = getNodeData().getSequence().getName();
972             }
973         }
974         if ( data.length() > 0 ) {
975             data = ForesterUtil.replaceIllegalNhCharacters( data );
976             if ( simple_nh && ( data.length() > 10 ) ) {
977                 data = data.substring( 0, 11 );
978             }
979             if ( ForesterUtil.isContainsParanthesesableNhCharacter( data ) ) {
980                 sb.append( '\'' );
981                 sb.append( data );
982                 sb.append( '\'' );
983             }
984             else {
985                 sb.append( data );
986             }
987         }
988         if ( write_distance_to_parent && ( getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) ) {
989             sb.append( ":" );
990             sb.append( getDistanceToParent() );
991         }
992         if ( ( svs == NH_CONVERSION_SUPPORT_VALUE_STYLE.IN_SQUARE_BRACKETS ) && !isExternal()
993                 && getBranchData().isHasConfidences()
994                 && ( getBranchData().getConfidence( 0 ).getValue() != Confidence.CONFIDENCE_DEFAULT_VALUE ) ) {
995             sb.append( "[" );
996             sb.append( Confidence.FORMATTER.format( ForesterUtil
997                     .round( getBranchData().getConfidence( 0 ).getValue(),
998                             PhyloXmlUtil.ROUNDING_DIGITS_FOR_PHYLOXML_DOUBLE_OUTPUT ) ) );
999             sb.append( "]" );
1000         }
1001         return sb.toString();
1002     }
1003
1004     /**
1005      * Swaps the the two childern of a PhylogenyNode node of this Phylogeny.
1006      */
1007     public final void swapChildren() throws RuntimeException {
1008         if ( isExternal() ) {
1009             throw new RuntimeException( "attempt to swap descendants of external node" );
1010         }
1011         if ( getNumberOfDescendants() != 2 ) {
1012             throw new RuntimeException( "attempt to swap descendants of node with " + getNumberOfDescendants()
1013                     + " descendants" );
1014         }
1015         final PhylogenyNode a = getChildNode( 0 );
1016         final PhylogenyNode b = getChildNode( 1 );
1017         setChildNode( 0, b );
1018         setChildNode( 1, a );
1019     }
1020
1021     /**
1022      * Converts this PhylogenyNode to a New Hampshire X (NHX) String
1023      * representation.
1024      */
1025     final public String toNewHampshireX() {
1026         final StringBuffer sb = new StringBuffer();
1027         final StringBuffer s_nhx = new StringBuffer();
1028         if ( !ForesterUtil.isEmpty( getName() ) ) {
1029             final String name = ForesterUtil.replaceIllegalNhCharacters( getName() );
1030             if ( ForesterUtil.isContainsParanthesesableNhCharacter( name ) ) {
1031                 sb.append( '\'' );
1032                 sb.append( name );
1033                 sb.append( '\'' );
1034             }
1035             else {
1036                 sb.append( name );
1037             }
1038         }
1039         if ( getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) {
1040             sb.append( ":" );
1041             sb.append( getDistanceToParent() );
1042         }
1043         if ( getNodeDataDirectly() != null ) {
1044             s_nhx.append( getNodeDataDirectly().toNHX() );
1045         }
1046         if ( getBranchDataDirectly() != null ) {
1047             s_nhx.append( getBranchDataDirectly().toNHX() );
1048         }
1049         if ( s_nhx.length() > 0 ) {
1050             sb.append( "[&&NHX" );
1051             sb.append( s_nhx );
1052             sb.append( "]" );
1053         }
1054         return sb.toString();
1055     }
1056
1057     @Override
1058     final public String toString() {
1059         final StringBuilder sb = new StringBuilder();
1060         if ( !ForesterUtil.isEmpty( getName() ) ) {
1061             sb.append( getName() );
1062             sb.append( " " );
1063         }
1064         if ( getNodeData().isHasTaxonomy() ) {
1065             if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getScientificName() ) ) {
1066                 sb.append( getNodeData().getTaxonomy().getScientificName() );
1067                 sb.append( " " );
1068             }
1069             else if ( !ForesterUtil.isEmpty( getNodeData().getTaxonomy().getTaxonomyCode() ) ) {
1070                 sb.append( getNodeData().getTaxonomy().getTaxonomyCode() );
1071                 sb.append( " " );
1072             }
1073             else if ( getNodeData().getTaxonomy().getIdentifier() != null ) {
1074                 sb.append( getNodeData().getTaxonomy().getIdentifier().toString() );
1075                 sb.append( " " );
1076             }
1077         }
1078         if ( getNodeData().isHasSequence() ) {
1079             if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getName() ) ) {
1080                 sb.append( getNodeData().getSequence().getName() );
1081                 sb.append( " " );
1082             }
1083             else if ( !ForesterUtil.isEmpty( getNodeData().getSequence().getSymbol() ) ) {
1084                 sb.append( getNodeData().getSequence().getSymbol() );
1085                 sb.append( " " );
1086             }
1087             else if ( getNodeData().getSequence().getAccession() != null ) {
1088                 sb.append( getNodeData().getTaxonomy().getIdentifier().toString() );
1089                 sb.append( " " );
1090             }
1091         }
1092         if ( sb.length() <= 1 ) {
1093             sb.append( "[" );
1094             sb.append( getId() );
1095             sb.append( "]" );
1096         }
1097         return sb.toString().trim();
1098     }
1099
1100     /**
1101      * Decreases the total number of all Nodes created so far by one.
1102      */
1103     final static synchronized void decreaseNodeCount() {
1104         --PhylogenyNode._node_count;
1105     }
1106
1107     /**
1108      * Returns the total number of all Nodes created so far.
1109      * 
1110      * @return total number of Nodes (int)
1111      */
1112     synchronized final public static int getNodeCount() {
1113         return PhylogenyNode._node_count;
1114     }
1115
1116     /**
1117      * Increases the total number of all Nodes created so far by one.
1118      */
1119     synchronized final private static void increaseNodeCount() {
1120         ++PhylogenyNode._node_count;
1121     }
1122
1123     /**
1124      * Sets the total number of all Nodes created so far to i (int).
1125      */
1126     synchronized final static void setNodeCount( final int i ) {
1127         PhylogenyNode._node_count = i;
1128     }
1129
1130     public static PhylogenyNode createInstanceFromNhxString( final String nhx ) throws NHXFormatException,
1131             PhyloXmlDataFormatException {
1132         return new PhylogenyNode( nhx, PhylogenyMethods.TAXONOMY_EXTRACTION.NO, false );
1133     }
1134
1135     public static PhylogenyNode createInstanceFromNhxString( final String nhx,
1136                                                              final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction )
1137             throws NHXFormatException, PhyloXmlDataFormatException {
1138         return new PhylogenyNode( nhx, taxonomy_extraction, false );
1139     }
1140
1141     public static PhylogenyNode createInstanceFromNhxString( final String nhx,
1142                                                              final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction,
1143                                                              final boolean replace_underscores )
1144             throws NHXFormatException, PhyloXmlDataFormatException {
1145         return new PhylogenyNode( nhx, taxonomy_extraction, replace_underscores );
1146     }
1147
1148     private PhylogenyNode( final String nhx,
1149                            final PhylogenyMethods.TAXONOMY_EXTRACTION taxonomy_extraction,
1150                            final boolean replace_underscores ) throws NHXFormatException, PhyloXmlDataFormatException {
1151         //  init();
1152         NHXParser.parseNHX( nhx, this, taxonomy_extraction, replace_underscores );
1153         setId( PhylogenyNode.getNodeCount() );
1154         PhylogenyNode.increaseNodeCount();
1155         setSumExtNodes( 1 ); // For ext node, this number is 1 (not 0!!)
1156     }
1157 }