inprogress
[jalview.git] / forester / java / src / org / forester / test / Test.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.test;
27
28 import java.io.ByteArrayInputStream;
29 import java.io.File;
30 import java.io.FileInputStream;
31 import java.io.IOException;
32 import java.net.URL;
33 import java.util.ArrayList;
34 import java.util.Date;
35 import java.util.HashSet;
36 import java.util.Iterator;
37 import java.util.List;
38 import java.util.Locale;
39 import java.util.Set;
40 import java.util.SortedSet;
41
42 import org.forester.application.support_transfer;
43 import org.forester.archaeopteryx.TreePanelUtil;
44 import org.forester.archaeopteryx.webservices.WebserviceUtil;
45 import org.forester.development.DevelopmentTools;
46 import org.forester.evoinference.TestPhylogenyReconstruction;
47 import org.forester.evoinference.matrix.character.CharacterStateMatrix;
48 import org.forester.evoinference.matrix.character.CharacterStateMatrix.BinaryStates;
49 import org.forester.go.TestGo;
50 import org.forester.io.parsers.FastaParser;
51 import org.forester.io.parsers.GeneralMsaParser;
52 import org.forester.io.parsers.HmmscanPerDomainTableParser;
53 import org.forester.io.parsers.HmmscanPerDomainTableParser.INDIVIDUAL_SCORE_CUTOFF;
54 import org.forester.io.parsers.nexus.NexusBinaryStatesMatrixParser;
55 import org.forester.io.parsers.nexus.NexusCharactersParser;
56 import org.forester.io.parsers.nexus.NexusPhylogeniesParser;
57 import org.forester.io.parsers.nhx.NHXParser;
58 import org.forester.io.parsers.nhx.NHXParser.TAXONOMY_EXTRACTION;
59 import org.forester.io.parsers.phyloxml.PhyloXmlParser;
60 import org.forester.io.parsers.tol.TolParser;
61 import org.forester.io.parsers.util.ParserUtils;
62 import org.forester.io.writers.PhylogenyWriter;
63 import org.forester.io.writers.SequenceWriter;
64 import org.forester.msa.BasicMsa;
65 import org.forester.msa.Mafft;
66 import org.forester.msa.Msa;
67 import org.forester.msa.MsaInferrer;
68 import org.forester.msa.MsaMethods;
69 import org.forester.pccx.TestPccx;
70 import org.forester.phylogeny.Phylogeny;
71 import org.forester.phylogeny.PhylogenyBranch;
72 import org.forester.phylogeny.PhylogenyMethods;
73 import org.forester.phylogeny.PhylogenyNode;
74 import org.forester.phylogeny.PhylogenyNode.NH_CONVERSION_SUPPORT_VALUE_STYLE;
75 import org.forester.phylogeny.data.Accession;
76 import org.forester.phylogeny.data.Accession.Source;
77 import org.forester.phylogeny.data.BinaryCharacters;
78 import org.forester.phylogeny.data.BranchWidth;
79 import org.forester.phylogeny.data.Confidence;
80 import org.forester.phylogeny.data.Distribution;
81 import org.forester.phylogeny.data.DomainArchitecture;
82 import org.forester.phylogeny.data.Event;
83 import org.forester.phylogeny.data.Identifier;
84 import org.forester.phylogeny.data.PhylogenyData;
85 import org.forester.phylogeny.data.PhylogenyDataUtil;
86 import org.forester.phylogeny.data.Polygon;
87 import org.forester.phylogeny.data.PropertiesMap;
88 import org.forester.phylogeny.data.Property;
89 import org.forester.phylogeny.data.Property.AppliesTo;
90 import org.forester.phylogeny.data.ProteinDomain;
91 import org.forester.phylogeny.data.Taxonomy;
92 import org.forester.phylogeny.factories.ParserBasedPhylogenyFactory;
93 import org.forester.phylogeny.factories.PhylogenyFactory;
94 import org.forester.phylogeny.iterators.PhylogenyNodeIterator;
95 import org.forester.protein.BasicDomain;
96 import org.forester.protein.BasicProtein;
97 import org.forester.protein.Domain;
98 import org.forester.protein.Protein;
99 import org.forester.protein.ProteinId;
100 import org.forester.rio.TestRIO;
101 import org.forester.sdi.SDI;
102 import org.forester.sdi.SDIR;
103 import org.forester.sdi.TestGSDI;
104 import org.forester.sequence.BasicSequence;
105 import org.forester.sequence.Sequence;
106 import org.forester.species.BasicSpecies;
107 import org.forester.species.Species;
108 import org.forester.surfacing.TestSurfacing;
109 import org.forester.tools.ConfidenceAssessor;
110 import org.forester.tools.SupportCount;
111 import org.forester.tools.TreeSplitMatrix;
112 import org.forester.util.AsciiHistogram;
113 import org.forester.util.BasicDescriptiveStatistics;
114 import org.forester.util.BasicTable;
115 import org.forester.util.BasicTableParser;
116 import org.forester.util.DescriptiveStatistics;
117 import org.forester.util.ForesterConstants;
118 import org.forester.util.ForesterUtil;
119 import org.forester.util.GeneralTable;
120 import org.forester.util.SequenceAccessionTools;
121 import org.forester.ws.seqdb.SequenceDatabaseEntry;
122 import org.forester.ws.seqdb.SequenceDbWsTools;
123 import org.forester.ws.seqdb.UniProtTaxonomy;
124 import org.forester.ws.wabi.TxSearch;
125 import org.forester.ws.wabi.TxSearch.RANKS;
126 import org.forester.ws.wabi.TxSearch.TAX_NAME_CLASS;
127 import org.forester.ws.wabi.TxSearch.TAX_RANK;
128
129 @SuppressWarnings( "unused")
130 public final class Test {
131
132     private final static String  PATH_TO_RESOURCES         = System.getProperty( "user.dir" )
133                                                                    + ForesterUtil.getFileSeparator() + "resources"
134                                                                    + ForesterUtil.getFileSeparator();
135     private final static String  PATH_TO_TEST_DATA         = System.getProperty( "user.dir" )
136                                                                    + ForesterUtil.getFileSeparator() + "test_data"
137                                                                    + ForesterUtil.getFileSeparator();
138     private final static boolean PERFORM_DB_TESTS          = false;
139     private static final boolean PERFORM_WEB_TREE_ACCESS   = true;
140     private static final String  PHYLOXML_LOCAL_XSD        = PATH_TO_RESOURCES + "phyloxml_schema/"
141                                                                    + ForesterConstants.PHYLO_XML_VERSION + "/"
142                                                                    + ForesterConstants.PHYLO_XML_XSD;
143     private static final String  PHYLOXML_REMOTE_XSD       = ForesterConstants.PHYLO_XML_LOCATION + "/"
144                                                                    + ForesterConstants.PHYLO_XML_VERSION + "/"
145                                                                    + ForesterConstants.PHYLO_XML_XSD;
146     private final static boolean USE_LOCAL_PHYLOXML_SCHEMA = true;
147     private final static double  ZERO_DIFF                 = 1.0E-9;
148
149     public static boolean isEqual( final double a, final double b ) {
150         return ( ( Math.abs( a - b ) ) < Test.ZERO_DIFF );
151     }
152
153     public static void main( final String[] args ) {
154         System.out.println( "[Java version: " + ForesterUtil.JAVA_VERSION + " " + ForesterUtil.JAVA_VENDOR + "]" );
155         System.out.println( "[OS: " + ForesterUtil.OS_NAME + " " + ForesterUtil.OS_ARCH + " " + ForesterUtil.OS_VERSION
156                 + "]" );
157         Locale.setDefault( Locale.US );
158         System.out.println( "[Locale: " + Locale.getDefault() + "]" );
159         int failed = 0;
160         int succeeded = 0;
161         System.out.print( "[Test if directory with files for testing exists/is readable: " );
162         if ( Test.testDir( PATH_TO_TEST_DATA ) ) {
163             System.out.println( "OK.]" );
164         }
165         else {
166             System.out.println( "could not find/read from directory \"" + PATH_TO_TEST_DATA + "\".]" );
167             System.out.println( "Testing aborted." );
168             System.exit( -1 );
169         }
170         System.out.print( "[Test if resources directory exists/is readable: " );
171         if ( testDir( PATH_TO_RESOURCES ) ) {
172             System.out.println( "OK.]" );
173         }
174         else {
175             System.out.println( "could not find/read from directory \"" + Test.PATH_TO_RESOURCES + "\".]" );
176             System.out.println( "Testing aborted." );
177             System.exit( -1 );
178         }
179         final long start_time = new Date().getTime();
180         System.out.print( "Basic node methods: " );
181         if ( Test.testBasicNodeMethods() ) {
182             System.out.println( "OK." );
183             succeeded++;
184         }
185         else {
186             System.out.println( "failed." );
187             failed++;
188         }
189         System.out.print( "Protein id: " );
190         if ( !testProteinId() ) {
191             System.out.println( "failed." );
192             failed++;
193         }
194         else {
195             succeeded++;
196         }
197         System.out.println( "OK." );
198         System.out.print( "Species: " );
199         if ( !testSpecies() ) {
200             System.out.println( "failed." );
201             failed++;
202         }
203         else {
204             succeeded++;
205         }
206         System.out.println( "OK." );
207         System.out.print( "Basic domain: " );
208         if ( !testBasicDomain() ) {
209             System.out.println( "failed." );
210             failed++;
211         }
212         else {
213             succeeded++;
214         }
215         System.out.println( "OK." );
216         System.out.print( "Basic protein: " );
217         if ( !testBasicProtein() ) {
218             System.out.println( "failed." );
219             failed++;
220         }
221         else {
222             succeeded++;
223         }
224         System.out.println( "OK." );
225         System.out.print( "Sequence writer: " );
226         if ( testSequenceWriter() ) {
227             System.out.println( "OK." );
228             succeeded++;
229         }
230         else {
231             System.out.println( "failed." );
232             failed++;
233         }
234         System.out.print( "Sequence id parsing: " );
235         if ( testSequenceIdParsing() ) {
236             System.out.println( "OK." );
237             succeeded++;
238         }
239         else {
240             System.out.println( "failed." );
241             failed++;
242         }
243         System.out.print( "UniProtKB id extraction: " );
244         if ( Test.testExtractUniProtKbProteinSeqIdentifier() ) {
245             System.out.println( "OK." );
246             succeeded++;
247         }
248         else {
249             System.out.println( "failed." );
250             failed++;
251         }
252         System.out.print( "Sequence DB tools 1: " );
253         if ( testSequenceDbWsTools1() ) {
254             System.out.println( "OK." );
255             succeeded++;
256         }
257         else {
258             System.out.println( "failed." );
259             failed++;
260         }
261         System.out.print( "Hmmscan output parser: " );
262         if ( testHmmscanOutputParser() ) {
263             System.out.println( "OK." );
264             succeeded++;
265         }
266         else {
267             System.out.println( "failed." );
268             failed++;
269         }
270         System.out.print( "Overlap removal: " );
271         if ( !org.forester.test.Test.testOverlapRemoval() ) {
272             System.out.println( "failed." );
273             failed++;
274         }
275         else {
276             succeeded++;
277         }
278         System.out.println( "OK." );
279         System.out.print( "Engulfing overlap removal: " );
280         if ( !Test.testEngulfingOverlapRemoval() ) {
281             System.out.println( "failed." );
282             failed++;
283         }
284         else {
285             succeeded++;
286         }
287         System.out.println( "OK." );
288         System.out.print( "Taxonomy code extraction: " );
289         if ( Test.testExtractTaxonomyCodeFromNodeName() ) {
290             System.out.println( "OK." );
291             succeeded++;
292         }
293         else {
294             System.out.println( "failed." );
295             failed++;
296         }
297         System.out.print( "SN extraction: " );
298         if ( Test.testExtractSNFromNodeName() ) {
299             System.out.println( "OK." );
300             succeeded++;
301         }
302         else {
303             System.out.println( "failed." );
304             failed++;
305         }
306         System.out.print( "Taxonomy extraction (general): " );
307         if ( Test.testTaxonomyExtraction() ) {
308             System.out.println( "OK." );
309             succeeded++;
310         }
311         else {
312             System.out.println( "failed." );
313             failed++;
314         }
315         System.exit( -1 );
316         System.out.print( "Uri for Aptx web sequence accession: " );
317         if ( Test.testCreateUriForSeqWeb() ) {
318             System.out.println( "OK." );
319             succeeded++;
320         }
321         else {
322             System.out.println( "failed." );
323             failed++;
324         }
325         System.out.print( "Basic node construction and parsing of NHX (node level): " );
326         if ( Test.testNHXNodeParsing() ) {
327             System.out.println( "OK." );
328             succeeded++;
329         }
330         else {
331             System.out.println( "failed." );
332             failed++;
333         }
334         System.out.print( "NHX parsing iterating: " );
335         if ( Test.testNHParsingIter() ) {
336             System.out.println( "OK." );
337             succeeded++;
338         }
339         else {
340             System.out.println( "failed." );
341             failed++;
342         }
343         System.out.print( "NH parsing: " );
344         if ( Test.testNHParsing() ) {
345             System.out.println( "OK." );
346             succeeded++;
347         }
348         else {
349             System.out.println( "failed." );
350             failed++;
351         }
352         System.out.print( "Conversion to NHX (node level): " );
353         if ( Test.testNHXconversion() ) {
354             System.out.println( "OK." );
355             succeeded++;
356         }
357         else {
358             System.out.println( "failed." );
359             failed++;
360         }
361         System.out.print( "NHX parsing: " );
362         if ( Test.testNHXParsing() ) {
363             System.out.println( "OK." );
364             succeeded++;
365         }
366         else {
367             System.out.println( "failed." );
368             failed++;
369         }
370         System.out.print( "NHX parsing with quotes: " );
371         if ( Test.testNHXParsingQuotes() ) {
372             System.out.println( "OK." );
373             succeeded++;
374         }
375         else {
376             System.out.println( "failed." );
377             failed++;
378         }
379         System.out.print( "NHX parsing (MrBayes): " );
380         if ( Test.testNHXParsingMB() ) {
381             System.out.println( "OK." );
382             succeeded++;
383         }
384         else {
385             System.out.println( "failed." );
386             failed++;
387         }
388         System.out.print( "Nexus characters parsing: " );
389         if ( Test.testNexusCharactersParsing() ) {
390             System.out.println( "OK." );
391             succeeded++;
392         }
393         else {
394             System.out.println( "failed." );
395             failed++;
396         }
397         System.out.print( "Nexus tree parsing iterating: " );
398         if ( Test.testNexusTreeParsingIterating() ) {
399             System.out.println( "OK." );
400             succeeded++;
401         }
402         else {
403             System.out.println( "failed." );
404             failed++;
405         }
406         System.out.print( "Nexus tree parsing: " );
407         if ( Test.testNexusTreeParsing() ) {
408             System.out.println( "OK." );
409             succeeded++;
410         }
411         else {
412             System.out.println( "failed." );
413             failed++;
414         }
415         System.out.print( "Nexus tree parsing (translating): " );
416         if ( Test.testNexusTreeParsingTranslating() ) {
417             System.out.println( "OK." );
418             succeeded++;
419         }
420         else {
421             System.out.println( "failed." );
422             failed++;
423         }
424         System.out.print( "Nexus matrix parsing: " );
425         if ( Test.testNexusMatrixParsing() ) {
426             System.out.println( "OK." );
427             succeeded++;
428         }
429         else {
430             System.out.println( "failed." );
431             failed++;
432         }
433         System.out.print( "Basic phyloXML parsing: " );
434         if ( Test.testBasicPhyloXMLparsing() ) {
435             System.out.println( "OK." );
436             succeeded++;
437         }
438         else {
439             System.out.println( "failed." );
440             failed++;
441         }
442         System.out.print( "Basic phyloXML parsing (validating against schema): " );
443         if ( testBasicPhyloXMLparsingValidating() ) {
444             System.out.println( "OK." );
445             succeeded++;
446         }
447         else {
448             System.out.println( "failed." );
449             failed++;
450         }
451         System.out.print( "Roundtrip phyloXML parsing (validating against schema): " );
452         if ( Test.testBasicPhyloXMLparsingRoundtrip() ) {
453             System.out.println( "OK." );
454             succeeded++;
455         }
456         else {
457             System.out.println( "failed." );
458             failed++;
459         }
460         System.out.print( "phyloXML Distribution Element: " );
461         if ( Test.testPhyloXMLparsingOfDistributionElement() ) {
462             System.out.println( "OK." );
463             succeeded++;
464         }
465         else {
466             System.out.println( "failed." );
467             failed++;
468         }
469         System.out.print( "Tol XML parsing: " );
470         if ( Test.testBasicTolXMLparsing() ) {
471             System.out.println( "OK." );
472             succeeded++;
473         }
474         else {
475             System.out.println( "failed." );
476             failed++;
477         }
478         System.out.print( "Copying of node data: " );
479         if ( Test.testCopyOfNodeData() ) {
480             System.out.println( "OK." );
481             succeeded++;
482         }
483         else {
484             System.out.println( "failed." );
485             failed++;
486         }
487         System.out.print( "Tree copy: " );
488         if ( Test.testTreeCopy() ) {
489             System.out.println( "OK." );
490             succeeded++;
491         }
492         else {
493             System.out.println( "failed." );
494             failed++;
495         }
496         System.out.print( "Basic tree methods: " );
497         if ( Test.testBasicTreeMethods() ) {
498             System.out.println( "OK." );
499             succeeded++;
500         }
501         else {
502             System.out.println( "failed." );
503             failed++;
504         }
505         System.out.print( "Tree methods: " );
506         if ( Test.testTreeMethods() ) {
507             System.out.println( "OK." );
508             succeeded++;
509         }
510         else {
511             System.out.println( "failed." );
512             failed++;
513         }
514         System.out.print( "Postorder Iterator: " );
515         if ( Test.testPostOrderIterator() ) {
516             System.out.println( "OK." );
517             succeeded++;
518         }
519         else {
520             System.out.println( "failed." );
521             failed++;
522         }
523         System.out.print( "Preorder Iterator: " );
524         if ( Test.testPreOrderIterator() ) {
525             System.out.println( "OK." );
526             succeeded++;
527         }
528         else {
529             System.out.println( "failed." );
530             failed++;
531         }
532         System.out.print( "Levelorder Iterator: " );
533         if ( Test.testLevelOrderIterator() ) {
534             System.out.println( "OK." );
535             succeeded++;
536         }
537         else {
538             System.out.println( "failed." );
539             failed++;
540         }
541         System.out.print( "Re-id methods: " );
542         if ( Test.testReIdMethods() ) {
543             System.out.println( "OK." );
544             succeeded++;
545         }
546         else {
547             System.out.println( "failed." );
548             failed++;
549         }
550         System.out.print( "Methods on last external nodes: " );
551         if ( Test.testLastExternalNodeMethods() ) {
552             System.out.println( "OK." );
553             succeeded++;
554         }
555         else {
556             System.out.println( "failed." );
557             failed++;
558         }
559         System.out.print( "Methods on external nodes: " );
560         if ( Test.testExternalNodeRelatedMethods() ) {
561             System.out.println( "OK." );
562             succeeded++;
563         }
564         else {
565             System.out.println( "failed." );
566             failed++;
567         }
568         System.out.print( "Deletion of external nodes: " );
569         if ( Test.testDeletionOfExternalNodes() ) {
570             System.out.println( "OK." );
571             succeeded++;
572         }
573         else {
574             System.out.println( "failed." );
575             failed++;
576         }
577         System.out.print( "Subtree deletion: " );
578         if ( Test.testSubtreeDeletion() ) {
579             System.out.println( "OK." );
580             succeeded++;
581         }
582         else {
583             System.out.println( "failed." );
584             failed++;
585         }
586         System.out.print( "Phylogeny branch: " );
587         if ( Test.testPhylogenyBranch() ) {
588             System.out.println( "OK." );
589             succeeded++;
590         }
591         else {
592             System.out.println( "failed." );
593             failed++;
594         }
595         System.out.print( "Rerooting: " );
596         if ( Test.testRerooting() ) {
597             System.out.println( "OK." );
598             succeeded++;
599         }
600         else {
601             System.out.println( "failed." );
602             failed++;
603         }
604         System.out.print( "Mipoint rooting: " );
605         if ( Test.testMidpointrooting() ) {
606             System.out.println( "OK." );
607             succeeded++;
608         }
609         else {
610             System.out.println( "failed." );
611             failed++;
612         }
613         System.out.print( "Node removal: " );
614         if ( Test.testNodeRemoval() ) {
615             System.out.println( "OK." );
616             succeeded++;
617         }
618         else {
619             System.out.println( "failed." );
620             failed++;
621         }
622         System.out.print( "Support count: " );
623         if ( Test.testSupportCount() ) {
624             System.out.println( "OK." );
625             succeeded++;
626         }
627         else {
628             System.out.println( "failed." );
629             failed++;
630         }
631         System.out.print( "Support transfer: " );
632         if ( Test.testSupportTransfer() ) {
633             System.out.println( "OK." );
634             succeeded++;
635         }
636         else {
637             System.out.println( "failed." );
638             failed++;
639         }
640         System.out.print( "Finding of LCA: " );
641         if ( Test.testGetLCA() ) {
642             System.out.println( "OK." );
643             succeeded++;
644         }
645         else {
646             System.out.println( "failed." );
647             failed++;
648         }
649         System.out.print( "Finding of LCA 2: " );
650         if ( Test.testGetLCA2() ) {
651             System.out.println( "OK." );
652             succeeded++;
653         }
654         else {
655             System.out.println( "failed." );
656             failed++;
657         }
658         System.out.print( "Calculation of distance between nodes: " );
659         if ( Test.testGetDistance() ) {
660             System.out.println( "OK." );
661             succeeded++;
662         }
663         else {
664             System.out.println( "failed." );
665             failed++;
666         }
667         System.out.print( "Descriptive statistics: " );
668         if ( Test.testDescriptiveStatistics() ) {
669             System.out.println( "OK." );
670             succeeded++;
671         }
672         else {
673             System.out.println( "failed." );
674             failed++;
675         }
676         System.out.print( "Data objects and methods: " );
677         if ( Test.testDataObjects() ) {
678             System.out.println( "OK." );
679             succeeded++;
680         }
681         else {
682             System.out.println( "failed." );
683             failed++;
684         }
685         System.out.print( "Properties map: " );
686         if ( Test.testPropertiesMap() ) {
687             System.out.println( "OK." );
688             succeeded++;
689         }
690         else {
691             System.out.println( "failed." );
692             failed++;
693         }
694         System.out.print( "SDIse: " );
695         if ( Test.testSDIse() ) {
696             System.out.println( "OK." );
697             succeeded++;
698         }
699         else {
700             System.out.println( "failed." );
701             failed++;
702         }
703         System.out.print( "SDIunrooted: " );
704         if ( Test.testSDIunrooted() ) {
705             System.out.println( "OK." );
706             succeeded++;
707         }
708         else {
709             System.out.println( "failed." );
710             failed++;
711         }
712         System.out.print( "GSDI: " );
713         if ( TestGSDI.test() ) {
714             System.out.println( "OK." );
715             succeeded++;
716         }
717         else {
718             System.out.println( "failed." );
719             failed++;
720         }
721         System.out.print( "RIO: " );
722         if ( TestRIO.test() ) {
723             System.out.println( "OK." );
724             succeeded++;
725         }
726         else {
727             System.out.println( "failed." );
728             failed++;
729         }
730         System.out.print( "Phylogeny reconstruction:" );
731         System.out.println();
732         if ( TestPhylogenyReconstruction.test( new File( PATH_TO_TEST_DATA ) ) ) {
733             System.out.println( "OK." );
734             succeeded++;
735         }
736         else {
737             System.out.println( "failed." );
738             failed++;
739         }
740         System.out.print( "Analysis of domain architectures: " );
741         System.out.println();
742         if ( TestSurfacing.test( new File( PATH_TO_TEST_DATA ) ) ) {
743             System.out.println( "OK." );
744             succeeded++;
745         }
746         else {
747             System.out.println( "failed." );
748             failed++;
749         }
750         System.out.print( "GO: " );
751         System.out.println();
752         if ( TestGo.test( new File( PATH_TO_TEST_DATA ) ) ) {
753             System.out.println( "OK." );
754             succeeded++;
755         }
756         else {
757             System.out.println( "failed." );
758             failed++;
759         }
760         System.out.print( "Modeling tools: " );
761         if ( TestPccx.test() ) {
762             System.out.println( "OK." );
763             succeeded++;
764         }
765         else {
766             System.out.println( "failed." );
767             failed++;
768         }
769         System.out.print( "Split Matrix strict: " );
770         if ( Test.testSplitStrict() ) {
771             System.out.println( "OK." );
772             succeeded++;
773         }
774         else {
775             System.out.println( "failed." );
776             failed++;
777         }
778         System.out.print( "Split Matrix: " );
779         if ( Test.testSplit() ) {
780             System.out.println( "OK." );
781             succeeded++;
782         }
783         else {
784             System.out.println( "failed." );
785             failed++;
786         }
787         System.out.print( "Confidence Assessor: " );
788         if ( Test.testConfidenceAssessor() ) {
789             System.out.println( "OK." );
790             succeeded++;
791         }
792         else {
793             System.out.println( "failed." );
794             failed++;
795         }
796         System.out.print( "Basic table: " );
797         if ( Test.testBasicTable() ) {
798             System.out.println( "OK." );
799             succeeded++;
800         }
801         else {
802             System.out.println( "failed." );
803             failed++;
804         }
805         System.out.print( "General table: " );
806         if ( Test.testGeneralTable() ) {
807             System.out.println( "OK." );
808             succeeded++;
809         }
810         else {
811             System.out.println( "failed." );
812             failed++;
813         }
814         System.out.print( "Amino acid sequence: " );
815         if ( Test.testAminoAcidSequence() ) {
816             System.out.println( "OK." );
817             succeeded++;
818         }
819         else {
820             System.out.println( "failed." );
821             failed++;
822         }
823         System.out.print( "General MSA parser: " );
824         if ( Test.testGeneralMsaParser() ) {
825             System.out.println( "OK." );
826             succeeded++;
827         }
828         else {
829             System.out.println( "failed." );
830             failed++;
831         }
832         System.out.print( "Fasta parser for msa: " );
833         if ( Test.testFastaParser() ) {
834             System.out.println( "OK." );
835             succeeded++;
836         }
837         else {
838             System.out.println( "failed." );
839             failed++;
840         }
841         System.out.print( "Creation of balanced phylogeny: " );
842         if ( Test.testCreateBalancedPhylogeny() ) {
843             System.out.println( "OK." );
844             succeeded++;
845         }
846         else {
847             System.out.println( "failed." );
848             failed++;
849         }
850         System.out.print( "Genbank accessor parsing: " );
851         if ( Test.testGenbankAccessorParsing() ) {
852             System.out.println( "OK." );
853             succeeded++;
854         }
855         else {
856             System.out.println( "failed." );
857             failed++;
858         }
859         String path = "";
860         final String os = ForesterUtil.OS_NAME.toLowerCase();
861         if ( ( os.indexOf( "mac" ) >= 0 ) && ( os.indexOf( "os" ) > 0 ) ) {
862             path = "/usr/local/bin/mafft";
863         }
864         else if ( os.indexOf( "win" ) >= 0 ) {
865             path = "C:\\Program Files\\mafft-win\\mafft.bat";
866         }
867         else {
868             path = "mafft";
869             if ( !MsaInferrer.isInstalled( path ) ) {
870                 path = "/usr/bin/mafft";
871             }
872             if ( !MsaInferrer.isInstalled( path ) ) {
873                 path = "/usr/local/bin/mafft";
874             }
875         }
876         if ( MsaInferrer.isInstalled( path ) ) {
877             System.out.print( "MAFFT (external program): " );
878             if ( Test.testMafft( path ) ) {
879                 System.out.println( "OK." );
880                 succeeded++;
881             }
882             else {
883                 System.out.println( "failed [will not count towards failed tests]" );
884             }
885         }
886         System.out.print( "Next nodes with collapsed: " );
887         if ( Test.testNextNodeWithCollapsing() ) {
888             System.out.println( "OK." );
889             succeeded++;
890         }
891         else {
892             System.out.println( "failed." );
893             failed++;
894         }
895         System.out.print( "Simple MSA quality: " );
896         if ( Test.testMsaQualityMethod() ) {
897             System.out.println( "OK." );
898             succeeded++;
899         }
900         else {
901             System.out.println( "failed." );
902             failed++;
903         }
904         if ( PERFORM_DB_TESTS ) {
905             System.out.print( "Uniprot Entry Retrieval: " );
906             if ( Test.testUniprotEntryRetrieval() ) {
907                 System.out.println( "OK." );
908                 succeeded++;
909             }
910             else {
911                 System.out.println( "failed." );
912                 failed++;
913             }
914             System.out.print( "Ebi Entry Retrieval: " );
915             if ( Test.testEbiEntryRetrieval() ) {
916                 System.out.println( "OK." );
917                 succeeded++;
918             }
919             else {
920                 System.out.println( "failed." );
921                 failed++;
922             }
923             System.out.print( "Sequence DB tools 2: " );
924             if ( testSequenceDbWsTools2() ) {
925                 System.out.println( "OK." );
926                 succeeded++;
927             }
928             else {
929                 System.out.println( "failed." );
930                 failed++;
931                 System.exit( -1 );
932             }
933             System.out.print( "Uniprot Taxonomy Search: " );
934             if ( Test.testUniprotTaxonomySearch() ) {
935                 System.out.println( "OK." );
936                 succeeded++;
937             }
938             else {
939                 System.out.println( "failed." );
940                 failed++;
941             }
942         }
943         if ( PERFORM_WEB_TREE_ACCESS ) {
944             System.out.print( "NHX parsing from URL: " );
945             if ( Test.testNHXparsingFromURL() ) {
946                 System.out.println( "OK." );
947                 succeeded++;
948             }
949             else {
950                 System.out.println( "failed." );
951                 failed++;
952             }
953             System.out.print( "phyloXML parsing from URL: " );
954             if ( Test.testPhyloXMLparsingFromURL() ) {
955                 System.out.println( "OK." );
956                 succeeded++;
957             }
958             else {
959                 System.out.println( "failed." );
960                 failed++;
961             }
962             System.out.print( "TreeBase acccess: " );
963             if ( Test.testTreeBaseReading() ) {
964                 System.out.println( "OK." );
965                 succeeded++;
966             }
967             else {
968                 System.out.println( "failed." );
969                 failed++;
970             }
971             //
972             System.out.print( "ToL access: " );
973             if ( Test.testToLReading() ) {
974                 System.out.println( "OK." );
975                 succeeded++;
976             }
977             else {
978                 System.out.println( "failed." );
979                 failed++;
980             }
981             //
982             System.out.print( "TreeFam access: " );
983             if ( Test.testTreeFamReading() ) {
984                 System.out.println( "OK." );
985                 succeeded++;
986             }
987             else {
988                 System.out.println( "failed." );
989                 failed++;
990             }
991             //
992             //
993             System.out.print( "Pfam tree access: " );
994             if ( Test.testPfamTreeReading() ) {
995                 System.out.println( "OK." );
996                 succeeded++;
997             }
998             else {
999                 System.out.println( "failed." );
1000                 failed++;
1001             }
1002         }
1003         System.out.println();
1004         final Runtime rt = java.lang.Runtime.getRuntime();
1005         final long free_memory = rt.freeMemory() / 1000000;
1006         final long total_memory = rt.totalMemory() / 1000000;
1007         System.out.println( "Running time    : " + ( new Date().getTime() - start_time ) + "ms " + "(free memory: "
1008                 + free_memory + "MB, total memory: " + total_memory + "MB)" );
1009         System.out.println();
1010         System.out.println( "Successful tests: " + succeeded );
1011         System.out.println( "Failed     tests: " + failed );
1012         System.out.println();
1013         if ( failed < 1 ) {
1014             System.out.println( "OK." );
1015         }
1016         else {
1017             System.out.println( "Not OK." );
1018         }
1019     }
1020
1021     public static boolean testEngulfingOverlapRemoval() {
1022         try {
1023             final Domain d0 = new BasicDomain( "d0", 0, 8, ( short ) 1, ( short ) 1, 0.1, 1 );
1024             final Domain d1 = new BasicDomain( "d1", 0, 1, ( short ) 1, ( short ) 1, 0.1, 1 );
1025             final Domain d2 = new BasicDomain( "d2", 0, 2, ( short ) 1, ( short ) 1, 0.1, 1 );
1026             final Domain d3 = new BasicDomain( "d3", 7, 8, ( short ) 1, ( short ) 1, 0.1, 1 );
1027             final Domain d4 = new BasicDomain( "d4", 7, 9, ( short ) 1, ( short ) 1, 0.1, 1 );
1028             final Domain d5 = new BasicDomain( "d4", 0, 9, ( short ) 1, ( short ) 1, 0.1, 1 );
1029             final Domain d6 = new BasicDomain( "d4", 4, 5, ( short ) 1, ( short ) 1, 0.1, 1 );
1030             final List<Boolean> covered = new ArrayList<Boolean>();
1031             covered.add( true ); // 0
1032             covered.add( false ); // 1
1033             covered.add( true ); // 2
1034             covered.add( false ); // 3
1035             covered.add( true ); // 4
1036             covered.add( true ); // 5
1037             covered.add( false ); // 6
1038             covered.add( true ); // 7
1039             covered.add( true ); // 8
1040             if ( ForesterUtil.isEngulfed( d0, covered ) ) {
1041                 return false;
1042             }
1043             if ( ForesterUtil.isEngulfed( d1, covered ) ) {
1044                 return false;
1045             }
1046             if ( ForesterUtil.isEngulfed( d2, covered ) ) {
1047                 return false;
1048             }
1049             if ( !ForesterUtil.isEngulfed( d3, covered ) ) {
1050                 return false;
1051             }
1052             if ( ForesterUtil.isEngulfed( d4, covered ) ) {
1053                 return false;
1054             }
1055             if ( ForesterUtil.isEngulfed( d5, covered ) ) {
1056                 return false;
1057             }
1058             if ( !ForesterUtil.isEngulfed( d6, covered ) ) {
1059                 return false;
1060             }
1061             final Domain a = new BasicDomain( "a", 0, 10, ( short ) 1, ( short ) 1, 0.1, 1 );
1062             final Domain b = new BasicDomain( "b", 8, 20, ( short ) 1, ( short ) 1, 0.2, 1 );
1063             final Domain c = new BasicDomain( "c", 15, 16, ( short ) 1, ( short ) 1, 0.3, 1 );
1064             final Protein abc = new BasicProtein( "abc", "nemve", 0 );
1065             abc.addProteinDomain( a );
1066             abc.addProteinDomain( b );
1067             abc.addProteinDomain( c );
1068             final Protein abc_r1 = ForesterUtil.removeOverlappingDomains( 3, false, abc );
1069             final Protein abc_r2 = ForesterUtil.removeOverlappingDomains( 3, true, abc );
1070             if ( abc.getNumberOfProteinDomains() != 3 ) {
1071                 return false;
1072             }
1073             if ( abc_r1.getNumberOfProteinDomains() != 3 ) {
1074                 return false;
1075             }
1076             if ( abc_r2.getNumberOfProteinDomains() != 2 ) {
1077                 return false;
1078             }
1079             if ( !abc_r2.getProteinDomain( 0 ).getDomainId().equals( "a" ) ) {
1080                 return false;
1081             }
1082             if ( !abc_r2.getProteinDomain( 1 ).getDomainId().equals( "b" ) ) {
1083                 return false;
1084             }
1085             final Domain d = new BasicDomain( "d", 0, 10, ( short ) 1, ( short ) 1, 0.1, 1 );
1086             final Domain e = new BasicDomain( "e", 8, 20, ( short ) 1, ( short ) 1, 0.3, 1 );
1087             final Domain f = new BasicDomain( "f", 15, 16, ( short ) 1, ( short ) 1, 0.2, 1 );
1088             final Protein def = new BasicProtein( "def", "nemve", 0 );
1089             def.addProteinDomain( d );
1090             def.addProteinDomain( e );
1091             def.addProteinDomain( f );
1092             final Protein def_r1 = ForesterUtil.removeOverlappingDomains( 5, false, def );
1093             final Protein def_r2 = ForesterUtil.removeOverlappingDomains( 5, true, def );
1094             if ( def.getNumberOfProteinDomains() != 3 ) {
1095                 return false;
1096             }
1097             if ( def_r1.getNumberOfProteinDomains() != 3 ) {
1098                 return false;
1099             }
1100             if ( def_r2.getNumberOfProteinDomains() != 3 ) {
1101                 return false;
1102             }
1103             if ( !def_r2.getProteinDomain( 0 ).getDomainId().equals( "d" ) ) {
1104                 return false;
1105             }
1106             if ( !def_r2.getProteinDomain( 1 ).getDomainId().equals( "f" ) ) {
1107                 return false;
1108             }
1109             if ( !def_r2.getProteinDomain( 2 ).getDomainId().equals( "e" ) ) {
1110                 return false;
1111             }
1112         }
1113         catch ( final Exception e ) {
1114             e.printStackTrace( System.out );
1115             return false;
1116         }
1117         return true;
1118     }
1119
1120     public static final boolean testNHXparsingFromURL() {
1121         try {
1122             final String s = "https://sites.google.com/site/cmzmasek/home/software/archaeopteryx/examples/simple/simple_1.nh";
1123             final URL u = new URL( s );
1124             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1125             final Phylogeny[] phys = factory.create( u, new NHXParser() );
1126             if ( ( phys == null ) || ( phys.length != 5 ) ) {
1127                 return false;
1128             }
1129             if ( !phys[ 0 ].toNewHampshire().equals( "((((A,B),C),D),(E,F));" ) ) {
1130                 System.out.println( phys[ 0 ].toNewHampshire() );
1131                 return false;
1132             }
1133             if ( !phys[ 1 ].toNewHampshire().equals( "((1,2,3),(4,5,6),(7,8,9));" ) ) {
1134                 System.out.println( phys[ 1 ].toNewHampshire() );
1135                 return false;
1136             }
1137             final Phylogeny[] phys2 = factory.create( u.openStream(), new NHXParser() );
1138             if ( ( phys2 == null ) || ( phys2.length != 5 ) ) {
1139                 return false;
1140             }
1141             if ( !phys2[ 0 ].toNewHampshire().equals( "((((A,B),C),D),(E,F));" ) ) {
1142                 System.out.println( phys2[ 0 ].toNewHampshire() );
1143                 return false;
1144             }
1145             final PhylogenyFactory factory2 = ParserBasedPhylogenyFactory.getInstance();
1146             final NHXParser p = new NHXParser();
1147             final URL u2 = new URL( s );
1148             p.setSource( u2 );
1149             if ( !p.hasNext() ) {
1150                 return false;
1151             }
1152             if ( !p.next().toNewHampshire().equals( "((((A,B),C),D),(E,F));" ) ) {
1153                 return false;
1154             }
1155             if ( !p.hasNext() ) {
1156                 return false;
1157             }
1158             p.reset();
1159             if ( !p.hasNext() ) {
1160                 return false;
1161             }
1162             if ( !p.next().toNewHampshire().equals( "((((A,B),C),D),(E,F));" ) ) {
1163                 return false;
1164             }
1165             if ( !p.next().toNewHampshire().equals( "((1,2,3),(4,5,6),(7,8,9));" ) ) {
1166                 return false;
1167             }
1168             p.reset();
1169             if ( !p.hasNext() ) {
1170                 return false;
1171             }
1172             if ( !p.next().toNewHampshire().equals( "((((A,B),C),D),(E,F));" ) ) {
1173                 return false;
1174             }
1175             if ( !p.next().toNewHampshire().equals( "((1,2,3),(4,5,6),(7,8,9));" ) ) {
1176                 return false;
1177             }
1178         }
1179         catch ( final Exception e ) {
1180             e.printStackTrace();
1181         }
1182         return true;
1183     }
1184
1185     public static boolean testOverlapRemoval() {
1186         try {
1187             final Domain d0 = new BasicDomain( "d0", ( short ) 2, ( short ) 5, ( short ) 1, ( short ) 1, 0.1, 1 );
1188             final Domain d1 = new BasicDomain( "d1", ( short ) 7, ( short ) 10, ( short ) 1, ( short ) 1, 0.1, 1 );
1189             final Domain d2 = new BasicDomain( "d2", ( short ) 0, ( short ) 20, ( short ) 1, ( short ) 1, 0.1, 1 );
1190             final Domain d3 = new BasicDomain( "d3", ( short ) 9, ( short ) 10, ( short ) 1, ( short ) 1, 0.1, 1 );
1191             final Domain d4 = new BasicDomain( "d4", ( short ) 7, ( short ) 8, ( short ) 1, ( short ) 1, 0.1, 1 );
1192             final List<Boolean> covered = new ArrayList<Boolean>();
1193             covered.add( true ); // 0
1194             covered.add( false ); // 1
1195             covered.add( true ); // 2
1196             covered.add( false ); // 3
1197             covered.add( true ); // 4
1198             covered.add( true ); // 5
1199             covered.add( false ); // 6
1200             covered.add( true ); // 7
1201             covered.add( true ); // 8
1202             if ( ForesterUtil.calculateOverlap( d0, covered ) != 3 ) {
1203                 return false;
1204             }
1205             if ( ForesterUtil.calculateOverlap( d1, covered ) != 2 ) {
1206                 return false;
1207             }
1208             if ( ForesterUtil.calculateOverlap( d2, covered ) != 6 ) {
1209                 return false;
1210             }
1211             if ( ForesterUtil.calculateOverlap( d3, covered ) != 0 ) {
1212                 return false;
1213             }
1214             if ( ForesterUtil.calculateOverlap( d4, covered ) != 2 ) {
1215                 return false;
1216             }
1217             final Domain a = new BasicDomain( "a", ( short ) 2, ( short ) 5, ( short ) 1, ( short ) 1, 1, -1 );
1218             final Domain b = new BasicDomain( "b", ( short ) 2, ( short ) 10, ( short ) 1, ( short ) 1, 0.1, -1 );
1219             final Protein ab = new BasicProtein( "ab", "varanus", 0 );
1220             ab.addProteinDomain( a );
1221             ab.addProteinDomain( b );
1222             final Protein ab_s0 = ForesterUtil.removeOverlappingDomains( 3, false, ab );
1223             if ( ab.getNumberOfProteinDomains() != 2 ) {
1224                 return false;
1225             }
1226             if ( ab_s0.getNumberOfProteinDomains() != 1 ) {
1227                 return false;
1228             }
1229             if ( !ab_s0.getProteinDomain( 0 ).getDomainId().equals( "b" ) ) {
1230                 return false;
1231             }
1232             final Protein ab_s1 = ForesterUtil.removeOverlappingDomains( 4, false, ab );
1233             if ( ab.getNumberOfProteinDomains() != 2 ) {
1234                 return false;
1235             }
1236             if ( ab_s1.getNumberOfProteinDomains() != 2 ) {
1237                 return false;
1238             }
1239             final Domain c = new BasicDomain( "c", ( short ) 20000, ( short ) 20500, ( short ) 1, ( short ) 1, 10, 1 );
1240             final Domain d = new BasicDomain( "d",
1241                                               ( short ) 10000,
1242                                               ( short ) 10500,
1243                                               ( short ) 1,
1244                                               ( short ) 1,
1245                                               0.0000001,
1246                                               1 );
1247             final Domain e = new BasicDomain( "e", ( short ) 5000, ( short ) 5500, ( short ) 1, ( short ) 1, 0.0001, 1 );
1248             final Protein cde = new BasicProtein( "cde", "varanus", 0 );
1249             cde.addProteinDomain( c );
1250             cde.addProteinDomain( d );
1251             cde.addProteinDomain( e );
1252             final Protein cde_s0 = ForesterUtil.removeOverlappingDomains( 0, false, cde );
1253             if ( cde.getNumberOfProteinDomains() != 3 ) {
1254                 return false;
1255             }
1256             if ( cde_s0.getNumberOfProteinDomains() != 3 ) {
1257                 return false;
1258             }
1259             final Domain f = new BasicDomain( "f", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 10, 1 );
1260             final Domain g = new BasicDomain( "g", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 0.01, 1 );
1261             final Domain h = new BasicDomain( "h", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 0.0001, 1 );
1262             final Domain i = new BasicDomain( "i", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 0.5, 1 );
1263             final Domain i2 = new BasicDomain( "i", ( short ) 5, ( short ) 30, ( short ) 1, ( short ) 1, 0.5, 10 );
1264             final Protein fghi = new BasicProtein( "fghi", "varanus", 0 );
1265             fghi.addProteinDomain( f );
1266             fghi.addProteinDomain( g );
1267             fghi.addProteinDomain( h );
1268             fghi.addProteinDomain( i );
1269             fghi.addProteinDomain( i );
1270             fghi.addProteinDomain( i );
1271             fghi.addProteinDomain( i2 );
1272             final Protein fghi_s0 = ForesterUtil.removeOverlappingDomains( 10, false, fghi );
1273             if ( fghi.getNumberOfProteinDomains() != 7 ) {
1274                 return false;
1275             }
1276             if ( fghi_s0.getNumberOfProteinDomains() != 1 ) {
1277                 return false;
1278             }
1279             if ( !fghi_s0.getProteinDomain( 0 ).getDomainId().equals( "h" ) ) {
1280                 return false;
1281             }
1282             final Protein fghi_s1 = ForesterUtil.removeOverlappingDomains( 11, false, fghi );
1283             if ( fghi.getNumberOfProteinDomains() != 7 ) {
1284                 return false;
1285             }
1286             if ( fghi_s1.getNumberOfProteinDomains() != 7 ) {
1287                 return false;
1288             }
1289             final Domain j = new BasicDomain( "j", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 10, 1 );
1290             final Domain k = new BasicDomain( "k", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 0.01, 1 );
1291             final Domain l = new BasicDomain( "l", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 1, 0.0001, 1 );
1292             final Domain m = new BasicDomain( "m", ( short ) 10, ( short ) 20, ( short ) 1, ( short ) 4, 0.5, 1 );
1293             final Domain m0 = new BasicDomain( "m", ( short ) 10, ( short ) 20, ( short ) 2, ( short ) 4, 0.5, 1 );
1294             final Domain m1 = new BasicDomain( "m", ( short ) 10, ( short ) 20, ( short ) 3, ( short ) 4, 0.5, 1 );
1295             final Domain m2 = new BasicDomain( "m", ( short ) 5, ( short ) 30, ( short ) 4, ( short ) 4, 0.5, 10 );
1296             final Protein jklm = new BasicProtein( "jklm", "varanus", 0 );
1297             jklm.addProteinDomain( j );
1298             jklm.addProteinDomain( k );
1299             jklm.addProteinDomain( l );
1300             jklm.addProteinDomain( m );
1301             jklm.addProteinDomain( m0 );
1302             jklm.addProteinDomain( m1 );
1303             jklm.addProteinDomain( m2 );
1304             final Protein jklm_s0 = ForesterUtil.removeOverlappingDomains( 10, false, jklm );
1305             if ( jklm.getNumberOfProteinDomains() != 7 ) {
1306                 return false;
1307             }
1308             if ( jklm_s0.getNumberOfProteinDomains() != 1 ) {
1309                 return false;
1310             }
1311             if ( !jklm_s0.getProteinDomain( 0 ).getDomainId().equals( "l" ) ) {
1312                 return false;
1313             }
1314             final Protein jklm_s1 = ForesterUtil.removeOverlappingDomains( 11, false, jklm );
1315             if ( jklm.getNumberOfProteinDomains() != 7 ) {
1316                 return false;
1317             }
1318             if ( jklm_s1.getNumberOfProteinDomains() != 7 ) {
1319                 return false;
1320             }
1321             final Domain only = new BasicDomain( "only", ( short ) 5, ( short ) 30, ( short ) 4, ( short ) 4, 0.5, 10 );
1322             final Protein od = new BasicProtein( "od", "varanus", 0 );
1323             od.addProteinDomain( only );
1324             final Protein od_s0 = ForesterUtil.removeOverlappingDomains( 0, false, od );
1325             if ( od.getNumberOfProteinDomains() != 1 ) {
1326                 return false;
1327             }
1328             if ( od_s0.getNumberOfProteinDomains() != 1 ) {
1329                 return false;
1330             }
1331         }
1332         catch ( final Exception e ) {
1333             e.printStackTrace( System.out );
1334             return false;
1335         }
1336         return true;
1337     }
1338
1339     public static final boolean testPfamTreeReading() {
1340         try {
1341             final URL u = new URL( WebserviceUtil.PFAM_SERVER + "/family/PF" + "01849" + "/tree/download" );
1342             final NHXParser parser = new NHXParser();
1343             parser.setTaxonomyExtraction( NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
1344             parser.setReplaceUnderscores( false );
1345             parser.setGuessRootedness( true );
1346             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1347             final Phylogeny[] phys = factory.create( u.openStream(), parser );
1348             if ( ( phys == null ) || ( phys.length != 1 ) ) {
1349                 return false;
1350             }
1351             if ( phys[ 0 ].getNumberOfExternalNodes() < 10 ) {
1352                 return false;
1353             }
1354         }
1355         catch ( final Exception e ) {
1356             e.printStackTrace();
1357         }
1358         return true;
1359     }
1360
1361     public static final boolean testPhyloXMLparsingFromURL() {
1362         try {
1363             final String s = "https://sites.google.com/site/cmzmasek/home/software/archaeopteryx/examples/archaeopteryx_a/apaf_bcl2.xml";
1364             final URL u = new URL( s );
1365             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1366             final Phylogeny[] phys = factory.create( u.openStream(), PhyloXmlParser.createPhyloXmlParser() );
1367             if ( ( phys == null ) || ( phys.length != 2 ) ) {
1368                 return false;
1369             }
1370         }
1371         catch ( final Exception e ) {
1372             e.printStackTrace();
1373         }
1374         return true;
1375     }
1376
1377     public static final boolean testToLReading() {
1378         try {
1379             final URL u = new URL( WebserviceUtil.TOL_URL_BASE + "15079" );
1380             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1381             final Phylogeny[] phys = factory.create( u.openStream(), new TolParser() );
1382             if ( ( phys == null ) || ( phys.length != 1 ) ) {
1383                 return false;
1384             }
1385             if ( !phys[ 0 ].getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "15079" ) ) {
1386                 return false;
1387             }
1388             if ( !phys[ 0 ].getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Protacanthopterygii" ) ) {
1389                 return false;
1390             }
1391             if ( phys[ 0 ].getNumberOfExternalNodes() < 5 ) {
1392                 return false;
1393             }
1394         }
1395         catch ( final Exception e ) {
1396             e.printStackTrace();
1397         }
1398         return true;
1399     }
1400
1401     public static final boolean testTreeBaseReading() {
1402         try {
1403             final URL u = new URL( WebserviceUtil.TREEBASE_PHYLOWS_TREE_URL_BASE + "825?format=nexus" );
1404             final NexusPhylogeniesParser parser = new NexusPhylogeniesParser();
1405             parser.setReplaceUnderscores( true );
1406             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1407             final Phylogeny[] phys = factory.create( u.openStream(), parser );
1408             if ( ( phys == null ) || ( phys.length != 1 ) ) {
1409                 return false;
1410             }
1411             final URL u2 = new URL( WebserviceUtil.TREEBASE_PHYLOWS_STUDY_URL_BASE + "15613?format=nexus" );
1412             final NexusPhylogeniesParser parser2 = new NexusPhylogeniesParser();
1413             parser2.setReplaceUnderscores( true );
1414             final PhylogenyFactory factory2 = ParserBasedPhylogenyFactory.getInstance();
1415             final Phylogeny[] phys2 = factory2.create( u2.openStream(), parser2 );
1416             if ( ( phys2 == null ) || ( phys2.length != 9 ) ) {
1417                 return false;
1418             }
1419         }
1420         catch ( final Exception e ) {
1421             e.printStackTrace();
1422         }
1423         return true;
1424     }
1425
1426     public static final boolean testTreeFamReading() {
1427         try {
1428             final URL u = new URL( WebserviceUtil.TREE_FAM_URL_BASE + "101004" + "/tree/newick" );
1429             final NHXParser parser = new NHXParser();
1430             parser.setTaxonomyExtraction( NHXParser.TAXONOMY_EXTRACTION.NO );
1431             parser.setReplaceUnderscores( false );
1432             parser.setGuessRootedness( true );
1433             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1434             final Phylogeny[] phys = factory.create( u.openStream(), parser );
1435             if ( ( phys == null ) || ( phys.length != 1 ) ) {
1436                 return false;
1437             }
1438             if ( phys[ 0 ].getNumberOfExternalNodes() < 10 ) {
1439                 return false;
1440             }
1441         }
1442         catch ( final Exception e ) {
1443             e.printStackTrace();
1444         }
1445         return true;
1446     }
1447
1448     private final static Phylogeny createPhylogeny( final String nhx ) throws IOException {
1449         final Phylogeny p = ParserBasedPhylogenyFactory.getInstance().create( nhx, new NHXParser() )[ 0 ];
1450         return p;
1451     }
1452
1453     private final static Event getEvent( final Phylogeny p, final String n1, final String n2 ) {
1454         return PhylogenyMethods.calculateLCA( p.getNode( n1 ), p.getNode( n2 ) ).getNodeData().getEvent();
1455     }
1456
1457     private static boolean testAminoAcidSequence() {
1458         try {
1459             final Sequence aa1 = BasicSequence.createAaSequence( "aa1", "aAklm-?xX*z$#" );
1460             if ( aa1.getLength() != 13 ) {
1461                 return false;
1462             }
1463             if ( aa1.getResidueAt( 0 ) != 'A' ) {
1464                 return false;
1465             }
1466             if ( aa1.getResidueAt( 2 ) != 'K' ) {
1467                 return false;
1468             }
1469             if ( !new String( aa1.getMolecularSequence() ).equals( "AAKLM-XXX*ZXX" ) ) {
1470                 return false;
1471             }
1472             final Sequence aa2 = BasicSequence.createAaSequence( "aa3", "ARNDCQEGHILKMFPSTWYVX*-BZOJU" );
1473             if ( !new String( aa2.getMolecularSequence() ).equals( "ARNDCQEGHILKMFPSTWYVX*-BZXXU" ) ) {
1474                 return false;
1475             }
1476             final Sequence dna1 = BasicSequence.createDnaSequence( "dna1", "ACGTUX*-?RYMKWSN" );
1477             if ( !new String( dna1.getMolecularSequence() ).equals( "ACGTNN*-NRYMKWSN" ) ) {
1478                 return false;
1479             }
1480             final Sequence rna1 = BasicSequence.createRnaSequence( "rna1", "..ACGUTX*-?RYMKWSN" );
1481             if ( !new String( rna1.getMolecularSequence() ).equals( "--ACGUNN*-NRYMKWSN" ) ) {
1482                 return false;
1483             }
1484         }
1485         catch ( final Exception e ) {
1486             e.printStackTrace();
1487             return false;
1488         }
1489         return true;
1490     }
1491
1492     private static boolean testBasicDomain() {
1493         try {
1494             final Domain pd = new BasicDomain( "id", 23, 25, ( short ) 1, ( short ) 4, 0.1, -12 );
1495             if ( !pd.getDomainId().equals( "id" ) ) {
1496                 return false;
1497             }
1498             if ( pd.getNumber() != 1 ) {
1499                 return false;
1500             }
1501             if ( pd.getTotalCount() != 4 ) {
1502                 return false;
1503             }
1504             if ( !pd.equals( new BasicDomain( "id", 22, 111, ( short ) 1, ( short ) 4, 0.2, -12 ) ) ) {
1505                 return false;
1506             }
1507             final Domain a1 = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 4, 0.1, -12 );
1508             final BasicDomain a1_copy = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 4, 0.1, -12 );
1509             final BasicDomain a1_equal = new BasicDomain( "a", 524, 743994, ( short ) 1, ( short ) 300, 3.0005, 230 );
1510             final BasicDomain a2 = new BasicDomain( "a", 1, 10, ( short ) 2, ( short ) 4, 0.1, -12 );
1511             final BasicDomain a3 = new BasicDomain( "A", 1, 10, ( short ) 1, ( short ) 4, 0.1, -12 );
1512             if ( !a1.equals( a1 ) ) {
1513                 return false;
1514             }
1515             if ( !a1.equals( a1_copy ) ) {
1516                 return false;
1517             }
1518             if ( !a1.equals( a1_equal ) ) {
1519                 return false;
1520             }
1521             if ( !a1.equals( a2 ) ) {
1522                 return false;
1523             }
1524             if ( a1.equals( a3 ) ) {
1525                 return false;
1526             }
1527             if ( a1.compareTo( a1 ) != 0 ) {
1528                 return false;
1529             }
1530             if ( a1.compareTo( a1_copy ) != 0 ) {
1531                 return false;
1532             }
1533             if ( a1.compareTo( a1_equal ) != 0 ) {
1534                 return false;
1535             }
1536             if ( a1.compareTo( a2 ) != 0 ) {
1537                 return false;
1538             }
1539             if ( a1.compareTo( a3 ) == 0 ) {
1540                 return false;
1541             }
1542         }
1543         catch ( final Exception e ) {
1544             e.printStackTrace( System.out );
1545             return false;
1546         }
1547         return true;
1548     }
1549
1550     private static boolean testBasicNodeMethods() {
1551         try {
1552             if ( PhylogenyNode.getNodeCount() != 0 ) {
1553                 return false;
1554             }
1555             final PhylogenyNode n1 = new PhylogenyNode();
1556             final PhylogenyNode n2 = PhylogenyNode
1557                     .createInstanceFromNhxString( "", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
1558             final PhylogenyNode n3 = PhylogenyNode
1559                     .createInstanceFromNhxString( "n3", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
1560             final PhylogenyNode n4 = PhylogenyNode
1561                     .createInstanceFromNhxString( "n4:0.01", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
1562             if ( n1.isHasAssignedEvent() ) {
1563                 return false;
1564             }
1565             if ( PhylogenyNode.getNodeCount() != 4 ) {
1566                 return false;
1567             }
1568             if ( n3.getIndicator() != 0 ) {
1569                 return false;
1570             }
1571             if ( n3.getNumberOfExternalNodes() != 1 ) {
1572                 return false;
1573             }
1574             if ( !n3.isExternal() ) {
1575                 return false;
1576             }
1577             if ( !n3.isRoot() ) {
1578                 return false;
1579             }
1580             if ( !n4.getName().equals( "n4" ) ) {
1581                 return false;
1582             }
1583         }
1584         catch ( final Exception e ) {
1585             e.printStackTrace( System.out );
1586             return false;
1587         }
1588         return true;
1589     }
1590
1591     private static boolean testBasicPhyloXMLparsing() {
1592         try {
1593             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1594             final PhyloXmlParser xml_parser = PhyloXmlParser.createPhyloXmlParser();
1595             final Phylogeny[] phylogenies_0 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_test_t1.xml",
1596                                                               xml_parser );
1597             if ( xml_parser.getErrorCount() > 0 ) {
1598                 System.out.println( xml_parser.getErrorMessages().toString() );
1599                 return false;
1600             }
1601             if ( phylogenies_0.length != 4 ) {
1602                 return false;
1603             }
1604             final Phylogeny t1 = phylogenies_0[ 0 ];
1605             final Phylogeny t2 = phylogenies_0[ 1 ];
1606             final Phylogeny t3 = phylogenies_0[ 2 ];
1607             final Phylogeny t4 = phylogenies_0[ 3 ];
1608             if ( t1.getNumberOfExternalNodes() != 1 ) {
1609                 return false;
1610             }
1611             if ( !t1.isRooted() ) {
1612                 return false;
1613             }
1614             if ( t1.isRerootable() ) {
1615                 return false;
1616             }
1617             if ( !t1.getType().equals( "gene_tree" ) ) {
1618                 return false;
1619             }
1620             if ( t2.getNumberOfExternalNodes() != 2 ) {
1621                 return false;
1622             }
1623             if ( !isEqual( t2.getNode( "node a" ).getDistanceToParent(), 1.0 ) ) {
1624                 return false;
1625             }
1626             if ( !isEqual( t2.getNode( "node b" ).getDistanceToParent(), 2.0 ) ) {
1627                 return false;
1628             }
1629             if ( t2.getNode( "node a" ).getNodeData().getTaxonomies().size() != 2 ) {
1630                 return false;
1631             }
1632             if ( !t2.getNode( "node a" ).getNodeData().getTaxonomy( 0 ).getCommonName().equals( "some parasite" ) ) {
1633                 return false;
1634             }
1635             if ( !t2.getNode( "node a" ).getNodeData().getTaxonomy( 1 ).getCommonName().equals( "the host" ) ) {
1636                 return false;
1637             }
1638             if ( t2.getNode( "node a" ).getNodeData().getSequences().size() != 2 ) {
1639                 return false;
1640             }
1641             if ( !t2.getNode( "node a" ).getNodeData().getSequence( 0 ).getMolecularSequence()
1642                     .startsWith( "actgtgggggt" ) ) {
1643                 return false;
1644             }
1645             if ( !t2.getNode( "node a" ).getNodeData().getSequence( 1 ).getMolecularSequence()
1646                     .startsWith( "ctgtgatgcat" ) ) {
1647                 return false;
1648             }
1649             if ( t3.getNumberOfExternalNodes() != 4 ) {
1650                 return false;
1651             }
1652             if ( !t1.getName().equals( "t1" ) ) {
1653                 return false;
1654             }
1655             if ( !t2.getName().equals( "t2" ) ) {
1656                 return false;
1657             }
1658             if ( !t3.getName().equals( "t3" ) ) {
1659                 return false;
1660             }
1661             if ( !t4.getName().equals( "t4" ) ) {
1662                 return false;
1663             }
1664             if ( !t3.getIdentifier().getValue().equals( "1-1" ) ) {
1665                 return false;
1666             }
1667             if ( !t3.getIdentifier().getProvider().equals( "treebank" ) ) {
1668                 return false;
1669             }
1670             if ( !t3.getNode( "root node" ).getNodeData().getSequence().getType().equals( "protein" ) ) {
1671                 return false;
1672             }
1673             if ( !t3.getNode( "root node" ).getNodeData().getSequence().getName()
1674                     .equals( "Apoptosis facilitator Bcl-2-like 14 protein" ) ) {
1675                 return false;
1676             }
1677             if ( !t3.getNode( "root node" ).getNodeData().getSequence().getSymbol().equals( "BCL2L14" ) ) {
1678                 return false;
1679             }
1680             if ( !t3.getNode( "root node" ).getNodeData().getSequence().getAccession().getValue().equals( "Q9BZR8" ) ) {
1681                 return false;
1682             }
1683             if ( !t3.getNode( "root node" ).getNodeData().getSequence().getAccession().getSource().equals( "UniProtKB" ) ) {
1684                 return false;
1685             }
1686             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getDesc()
1687                     .equals( "apoptosis" ) ) {
1688                 return false;
1689             }
1690             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getRef()
1691                     .equals( "GO:0006915" ) ) {
1692                 return false;
1693             }
1694             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getSource()
1695                     .equals( "UniProtKB" ) ) {
1696                 return false;
1697             }
1698             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getEvidence()
1699                     .equals( "experimental" ) ) {
1700                 return false;
1701             }
1702             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getType()
1703                     .equals( "function" ) ) {
1704                 return false;
1705             }
1706             if ( ( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getConfidence()
1707                     .getValue() != 1 ) {
1708                 return false;
1709             }
1710             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getConfidence()
1711                     .getType().equals( "ml" ) ) {
1712                 return false;
1713             }
1714             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getDesc()
1715                     .equals( "apoptosis" ) ) {
1716                 return false;
1717             }
1718             if ( ( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1719                     .getProperty( "AFFY:expression" ).getAppliesTo() != AppliesTo.ANNOTATION ) {
1720                 return false;
1721             }
1722             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1723                     .getProperty( "AFFY:expression" ).getDataType().equals( "xsd:double" ) ) {
1724                 return false;
1725             }
1726             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1727                     .getProperty( "AFFY:expression" ).getRef().equals( "AFFY:expression" ) ) {
1728                 return false;
1729             }
1730             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1731                     .getProperty( "AFFY:expression" ).getUnit().equals( "AFFY:x" ) ) {
1732                 return false;
1733             }
1734             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1735                     .getProperty( "AFFY:expression" ).getValue().equals( "0.2" ) ) {
1736                 return false;
1737             }
1738             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1739                     .getProperty( "MED:disease" ).getValue().equals( "lymphoma" ) ) {
1740                 return false;
1741             }
1742             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 1 ) ).getRef()
1743                     .equals( "GO:0005829" ) ) {
1744                 return false;
1745             }
1746             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 0 ) ).getDesc()
1747                     .equals( "intracellular organelle" ) ) {
1748                 return false;
1749             }
1750             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getUri( 0 ).getType().equals( "source" ) ) ) {
1751                 return false;
1752             }
1753             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getUri( 0 ).getDescription()
1754                     .equals( "UniProt link" ) ) ) {
1755                 return false;
1756             }
1757             if ( !( t3.getNode( "root node" ).getNodeData().getSequence().getLocation().equals( "12p13-p12" ) ) ) {
1758                 return false;
1759             }
1760             final SortedSet<Accession> x = t3.getNode( "root node" ).getNodeData().getSequence().getCrossReferences();
1761             if ( x.size() != 4 ) {
1762                 return false;
1763             }
1764             int c = 0;
1765             for( final Accession acc : x ) {
1766                 if ( c == 0 ) {
1767                     if ( !acc.getSource().equals( "KEGG" ) ) {
1768                         return false;
1769                     }
1770                     if ( !acc.getValue().equals( "hsa:596" ) ) {
1771                         return false;
1772                     }
1773                 }
1774                 c++;
1775             }
1776         }
1777         catch ( final Exception e ) {
1778             e.printStackTrace( System.out );
1779             return false;
1780         }
1781         return true;
1782     }
1783
1784     private static boolean testBasicPhyloXMLparsingRoundtrip() {
1785         try {
1786             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
1787             final PhyloXmlParser xml_parser = PhyloXmlParser.createPhyloXmlParser();
1788             if ( USE_LOCAL_PHYLOXML_SCHEMA ) {
1789                 xml_parser.setValidateAgainstSchema( PHYLOXML_LOCAL_XSD );
1790             }
1791             else {
1792                 xml_parser.setValidateAgainstSchema( PHYLOXML_REMOTE_XSD );
1793             }
1794             final Phylogeny[] phylogenies_0 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_test_t1.xml",
1795                                                               xml_parser );
1796             if ( xml_parser.getErrorCount() > 0 ) {
1797                 System.out.println( xml_parser.getErrorMessages().toString() );
1798                 return false;
1799             }
1800             if ( phylogenies_0.length != 4 ) {
1801                 return false;
1802             }
1803             final StringBuffer t1_sb = new StringBuffer( phylogenies_0[ 0 ].toPhyloXML( 0 ) );
1804             final Phylogeny[] phylogenies_t1 = factory.create( t1_sb, xml_parser );
1805             if ( phylogenies_t1.length != 1 ) {
1806                 return false;
1807             }
1808             final Phylogeny t1_rt = phylogenies_t1[ 0 ];
1809             if ( !t1_rt.getDistanceUnit().equals( "cc" ) ) {
1810                 return false;
1811             }
1812             if ( !t1_rt.isRooted() ) {
1813                 return false;
1814             }
1815             if ( t1_rt.isRerootable() ) {
1816                 return false;
1817             }
1818             if ( !t1_rt.getType().equals( "gene_tree" ) ) {
1819                 return false;
1820             }
1821             final StringBuffer t2_sb = new StringBuffer( phylogenies_0[ 1 ].toPhyloXML( 0 ) );
1822             final Phylogeny[] phylogenies_t2 = factory.create( t2_sb, xml_parser );
1823             final Phylogeny t2_rt = phylogenies_t2[ 0 ];
1824             if ( t2_rt.getNode( "node a" ).getNodeData().getTaxonomies().size() != 2 ) {
1825                 return false;
1826             }
1827             if ( !t2_rt.getNode( "node a" ).getNodeData().getTaxonomy( 0 ).getCommonName().equals( "some parasite" ) ) {
1828                 return false;
1829             }
1830             if ( !t2_rt.getNode( "node a" ).getNodeData().getTaxonomy( 1 ).getCommonName().equals( "the host" ) ) {
1831                 return false;
1832             }
1833             if ( t2_rt.getNode( "node a" ).getNodeData().getSequences().size() != 2 ) {
1834                 return false;
1835             }
1836             if ( !t2_rt.getNode( "node a" ).getNodeData().getSequence( 0 ).getMolecularSequence()
1837                     .startsWith( "actgtgggggt" ) ) {
1838                 return false;
1839             }
1840             if ( !t2_rt.getNode( "node a" ).getNodeData().getSequence( 1 ).getMolecularSequence()
1841                     .startsWith( "ctgtgatgcat" ) ) {
1842                 return false;
1843             }
1844             final StringBuffer t3_sb_0 = new StringBuffer( phylogenies_0[ 2 ].toPhyloXML( 0 ) );
1845             final Phylogeny[] phylogenies_1_0 = factory.create( t3_sb_0, xml_parser );
1846             final StringBuffer t3_sb = new StringBuffer( phylogenies_1_0[ 0 ].toPhyloXML( 0 ) );
1847             final Phylogeny[] phylogenies_1 = factory.create( t3_sb, xml_parser );
1848             if ( phylogenies_1.length != 1 ) {
1849                 return false;
1850             }
1851             final Phylogeny t3_rt = phylogenies_1[ 0 ];
1852             if ( !t3_rt.getName().equals( "t3" ) ) {
1853                 return false;
1854             }
1855             if ( t3_rt.getNumberOfExternalNodes() != 4 ) {
1856                 return false;
1857             }
1858             if ( !t3_rt.getIdentifier().getValue().equals( "1-1" ) ) {
1859                 return false;
1860             }
1861             if ( !t3_rt.getIdentifier().getProvider().equals( "treebank" ) ) {
1862                 return false;
1863             }
1864             if ( !t3_rt.getNode( "root node" ).getNodeData().getSequence().getType().equals( "protein" ) ) {
1865                 return false;
1866             }
1867             if ( !t3_rt.getNode( "root node" ).getNodeData().getSequence().getName()
1868                     .equals( "Apoptosis facilitator Bcl-2-like 14 protein" ) ) {
1869                 return false;
1870             }
1871             if ( !t3_rt.getNode( "root node" ).getNodeData().getSequence().getSymbol().equals( "BCL2L14" ) ) {
1872                 return false;
1873             }
1874             if ( !t3_rt.getNode( "root node" ).getNodeData().getSequence().getAccession().getValue().equals( "Q9BZR8" ) ) {
1875                 return false;
1876             }
1877             if ( !t3_rt.getNode( "root node" ).getNodeData().getSequence().getAccession().getSource()
1878                     .equals( "UniProtKB" ) ) {
1879                 return false;
1880             }
1881             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getDesc()
1882                     .equals( "apoptosis" ) ) {
1883                 return false;
1884             }
1885             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getRef()
1886                     .equals( "GO:0006915" ) ) {
1887                 return false;
1888             }
1889             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getSource()
1890                     .equals( "UniProtKB" ) ) {
1891                 return false;
1892             }
1893             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getEvidence()
1894                     .equals( "experimental" ) ) {
1895                 return false;
1896             }
1897             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getType()
1898                     .equals( "function" ) ) {
1899                 return false;
1900             }
1901             if ( ( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getConfidence()
1902                     .getValue() != 1 ) {
1903                 return false;
1904             }
1905             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getConfidence()
1906                     .getType().equals( "ml" ) ) {
1907                 return false;
1908             }
1909             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getDesc()
1910                     .equals( "apoptosis" ) ) {
1911                 return false;
1912             }
1913             if ( ( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1914                     .getProperty( "AFFY:expression" ).getAppliesTo() != AppliesTo.ANNOTATION ) {
1915                 return false;
1916             }
1917             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1918                     .getProperty( "AFFY:expression" ).getDataType().equals( "xsd:double" ) ) {
1919                 return false;
1920             }
1921             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1922                     .getProperty( "AFFY:expression" ).getRef().equals( "AFFY:expression" ) ) {
1923                 return false;
1924             }
1925             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1926                     .getProperty( "AFFY:expression" ).getUnit().equals( "AFFY:x" ) ) {
1927                 return false;
1928             }
1929             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1930                     .getProperty( "AFFY:expression" ).getValue().equals( "0.2" ) ) {
1931                 return false;
1932             }
1933             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 2 ) ).getProperties()
1934                     .getProperty( "MED:disease" ).getValue().equals( "lymphoma" ) ) {
1935                 return false;
1936             }
1937             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 1 ) ).getRef()
1938                     .equals( "GO:0005829" ) ) {
1939                 return false;
1940             }
1941             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getAnnotation( 0 ) ).getDesc()
1942                     .equals( "intracellular organelle" ) ) {
1943                 return false;
1944             }
1945             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getUri( 0 ).getType().equals( "source" ) ) ) {
1946                 return false;
1947             }
1948             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getUri( 0 ).getDescription()
1949                     .equals( "UniProt link" ) ) ) {
1950                 return false;
1951             }
1952             if ( !( t3_rt.getNode( "root node" ).getNodeData().getSequence().getLocation().equals( "12p13-p12" ) ) ) {
1953                 return false;
1954             }
1955             if ( !( t3_rt.getNode( "root node" ).getNodeData().getReference().getDoi().equals( "10.1038/387489a0" ) ) ) {
1956                 return false;
1957             }
1958             if ( !( t3_rt.getNode( "root node" ).getNodeData().getReference().getDescription()
1959                     .equals( "Aguinaldo, A. M. A.; J. M. Turbeville, L. S. Linford, M. C. Rivera, J. R. Garey, R. A. Raff, & J. A. Lake (1997). \"Evidence for a clade of nematodes, arthropods and other moulting animals\". Nature 387 (6632): 489–493." ) ) ) {
1960                 return false;
1961             }
1962             if ( !t3_rt.getNode( "root node" ).getNodeData().getTaxonomy().getTaxonomyCode().equals( "ECDYS" ) ) {
1963                 return false;
1964             }
1965             if ( !t3_rt.getNode( "root node" ).getNodeData().getTaxonomy().getScientificName().equals( "ecdysozoa" ) ) {
1966                 return false;
1967             }
1968             if ( !t3_rt.getNode( "root node" ).getNodeData().getTaxonomy().getCommonName().equals( "molting animals" ) ) {
1969                 return false;
1970             }
1971             if ( !t3_rt.getNode( "root node" ).getNodeData().getTaxonomy().getIdentifier().getValue().equals( "1" ) ) {
1972                 return false;
1973             }
1974             if ( !t3_rt.getNode( "root node" ).getNodeData().getTaxonomy().getIdentifier().getProvider()
1975                     .equals( "ncbi" ) ) {
1976                 return false;
1977             }
1978             if ( t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getTotalLength() != 124 ) {
1979                 return false;
1980             }
1981             if ( !t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 )
1982                     .getName().equals( "B" ) ) {
1983                 return false;
1984             }
1985             if ( t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 )
1986                     .getFrom() != 21 ) {
1987                 return false;
1988             }
1989             if ( t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 ).getTo() != 44 ) {
1990                 return false;
1991             }
1992             if ( t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 )
1993                     .getLength() != 24 ) {
1994                 return false;
1995             }
1996             if ( t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 )
1997                     .getConfidence() != 2144 ) {
1998                 return false;
1999             }
2000             if ( !t3_rt.getNode( "node bc" ).getNodeData().getSequence().getDomainArchitecture().getDomain( 0 ).getId()
2001                     .equals( "pfam" ) ) {
2002                 return false;
2003             }
2004             if ( t3_rt.getNode( "node bb" ).getNodeData().getBinaryCharacters().getGainedCharacters().size() != 3 ) {
2005                 return false;
2006             }
2007             if ( t3_rt.getNode( "node bb" ).getNodeData().getBinaryCharacters().getPresentCharacters().size() != 2 ) {
2008                 return false;
2009             }
2010             if ( t3_rt.getNode( "node bb" ).getNodeData().getBinaryCharacters().getLostCharacters().size() != 1 ) {
2011                 return false;
2012             }
2013             if ( !t3_rt.getNode( "node bb" ).getNodeData().getBinaryCharacters().getType().equals( "domains" ) ) {
2014                 return false;
2015             }
2016             final Taxonomy taxbb = t3_rt.getNode( "node bb" ).getNodeData().getTaxonomy();
2017             if ( !taxbb.getAuthority().equals( "Stephenson, 1935" ) ) {
2018                 return false;
2019             }
2020             if ( !taxbb.getCommonName().equals( "starlet sea anemone" ) ) {
2021                 return false;
2022             }
2023             if ( !taxbb.getIdentifier().getProvider().equals( "EOL" ) ) {
2024                 return false;
2025             }
2026             if ( !taxbb.getIdentifier().getValue().equals( "704294" ) ) {
2027                 return false;
2028             }
2029             if ( !taxbb.getTaxonomyCode().equals( "NEMVE" ) ) {
2030                 return false;
2031             }
2032             if ( !taxbb.getScientificName().equals( "Nematostella vectensis" ) ) {
2033                 return false;
2034             }
2035             if ( taxbb.getSynonyms().size() != 2 ) {
2036                 return false;
2037             }
2038             if ( !taxbb.getSynonyms().contains( "Nematostella vectensis Stephenson1935" ) ) {
2039                 return false;
2040             }
2041             if ( !taxbb.getSynonyms().contains( "See Anemone" ) ) {
2042                 return false;
2043             }
2044             if ( !taxbb.getUri( 0 ).getDescription().equals( "EOL" ) ) {
2045                 return false;
2046             }
2047             if ( !taxbb.getUri( 0 ).getType().equals( "linkout" ) ) {
2048                 return false;
2049             }
2050             if ( !taxbb.getUri( 0 ).getValue().toString().equals( "http://www.eol.org/pages/704294" ) ) {
2051                 return false;
2052             }
2053             if ( ( ( BinaryCharacters ) t3_rt.getNode( "node bb" ).getNodeData().getBinaryCharacters().copy() )
2054                     .getLostCount() != BinaryCharacters.COUNT_DEFAULT ) {
2055                 return false;
2056             }
2057             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getGainedCount() != 1 ) {
2058                 return false;
2059             }
2060             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getGainedCharacters().size() != 1 ) {
2061                 return false;
2062             }
2063             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getLostCount() != 3 ) {
2064                 return false;
2065             }
2066             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getLostCharacters().size() != 3 ) {
2067                 return false;
2068             }
2069             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getPresentCount() != 2 ) {
2070                 return false;
2071             }
2072             if ( t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getPresentCharacters().size() != 2 ) {
2073                 return false;
2074             }
2075             if ( !t3_rt.getNode( "node b" ).getNodeData().getBinaryCharacters().getType().equals( "characters" ) ) {
2076                 return false;
2077             }
2078             //
2079             if ( !t3_rt.getNode( "node ba" ).getNodeData().getDate().getDesc().equals( "Silurian" ) ) {
2080                 return false;
2081             }
2082             if ( !t3_rt.getNode( "node ba" ).getNodeData().getDate().getValue().toPlainString()
2083                     .equalsIgnoreCase( "435" ) ) {
2084                 return false;
2085             }
2086             if ( !t3_rt.getNode( "node ba" ).getNodeData().getDate().getMin().toPlainString().equalsIgnoreCase( "416" ) ) {
2087                 return false;
2088             }
2089             if ( !t3_rt.getNode( "node ba" ).getNodeData().getDate().getMax().toPlainString()
2090                     .equalsIgnoreCase( "443.7" ) ) {
2091                 return false;
2092             }
2093             if ( !t3_rt.getNode( "node ba" ).getNodeData().getDate().getUnit().equals( "mya" ) ) {
2094                 return false;
2095             }
2096             if ( !t3_rt.getNode( "node bb" ).getNodeData().getDate().getDesc().equals( "Triassic" ) ) {
2097                 return false;
2098             }
2099             if ( !t3_rt.getNode( "node bc" ).getNodeData().getDate().getValue().toPlainString()
2100                     .equalsIgnoreCase( "433" ) ) {
2101                 return false;
2102             }
2103             final SortedSet<Accession> x = t3_rt.getNode( "root node" ).getNodeData().getSequence()
2104                     .getCrossReferences();
2105             if ( x.size() != 4 ) {
2106                 return false;
2107             }
2108             int c = 0;
2109             for( final Accession acc : x ) {
2110                 if ( c == 0 ) {
2111                     if ( !acc.getSource().equals( "KEGG" ) ) {
2112                         return false;
2113                     }
2114                     if ( !acc.getValue().equals( "hsa:596" ) ) {
2115                         return false;
2116                     }
2117                 }
2118                 c++;
2119             }
2120         }
2121         catch ( final Exception e ) {
2122             e.printStackTrace( System.out );
2123             return false;
2124         }
2125         return true;
2126     }
2127
2128     private static boolean testBasicPhyloXMLparsingValidating() {
2129         try {
2130             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
2131             PhyloXmlParser xml_parser = null;
2132             try {
2133                 xml_parser = PhyloXmlParser.createPhyloXmlParserXsdValidating();
2134             }
2135             catch ( final Exception e ) {
2136                 // Do nothing -- means were not running from jar.
2137             }
2138             if ( xml_parser == null ) {
2139                 xml_parser = PhyloXmlParser.createPhyloXmlParser();
2140                 if ( USE_LOCAL_PHYLOXML_SCHEMA ) {
2141                     xml_parser.setValidateAgainstSchema( PHYLOXML_LOCAL_XSD );
2142                 }
2143                 else {
2144                     xml_parser.setValidateAgainstSchema( PHYLOXML_REMOTE_XSD );
2145                 }
2146             }
2147             final Phylogeny[] phylogenies_0 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_test_t1.xml",
2148                                                               xml_parser );
2149             if ( xml_parser.getErrorCount() > 0 ) {
2150                 System.out.println( xml_parser.getErrorMessages().toString() );
2151                 return false;
2152             }
2153             if ( phylogenies_0.length != 4 ) {
2154                 return false;
2155             }
2156             final Phylogeny t1 = phylogenies_0[ 0 ];
2157             final Phylogeny t2 = phylogenies_0[ 1 ];
2158             final Phylogeny t3 = phylogenies_0[ 2 ];
2159             final Phylogeny t4 = phylogenies_0[ 3 ];
2160             if ( !t1.getName().equals( "t1" ) ) {
2161                 return false;
2162             }
2163             if ( !t2.getName().equals( "t2" ) ) {
2164                 return false;
2165             }
2166             if ( !t3.getName().equals( "t3" ) ) {
2167                 return false;
2168             }
2169             if ( !t4.getName().equals( "t4" ) ) {
2170                 return false;
2171             }
2172             if ( t1.getNumberOfExternalNodes() != 1 ) {
2173                 return false;
2174             }
2175             if ( t2.getNumberOfExternalNodes() != 2 ) {
2176                 return false;
2177             }
2178             if ( t3.getNumberOfExternalNodes() != 4 ) {
2179                 return false;
2180             }
2181             final String x2 = Test.PATH_TO_TEST_DATA + "phyloxml_test_t1.xml";
2182             final Phylogeny[] phylogenies_1 = factory.create( x2, xml_parser );
2183             if ( xml_parser.getErrorCount() > 0 ) {
2184                 System.out.println( "errors:" );
2185                 System.out.println( xml_parser.getErrorMessages().toString() );
2186                 return false;
2187             }
2188             if ( phylogenies_1.length != 4 ) {
2189                 return false;
2190             }
2191             final Phylogeny[] phylogenies_2 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_test_t3.xml",
2192                                                               xml_parser );
2193             if ( xml_parser.getErrorCount() > 0 ) {
2194                 System.out.println( "errors:" );
2195                 System.out.println( xml_parser.getErrorMessages().toString() );
2196                 return false;
2197             }
2198             if ( phylogenies_2.length != 1 ) {
2199                 return false;
2200             }
2201             if ( phylogenies_2[ 0 ].getNumberOfExternalNodes() != 2 ) {
2202                 return false;
2203             }
2204             final Phylogeny[] phylogenies_3 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_test_t4.xml",
2205                                                               xml_parser );
2206             if ( xml_parser.getErrorCount() > 0 ) {
2207                 System.out.println( xml_parser.getErrorMessages().toString() );
2208                 return false;
2209             }
2210             if ( phylogenies_3.length != 2 ) {
2211                 return false;
2212             }
2213             final Phylogeny a = phylogenies_3[ 0 ];
2214             if ( !a.getName().equals( "tree 4" ) ) {
2215                 return false;
2216             }
2217             if ( a.getNumberOfExternalNodes() != 3 ) {
2218                 return false;
2219             }
2220             if ( !a.getNode( "node b1" ).getNodeData().getSequence().getName().equals( "b1 gene" ) ) {
2221                 return false;
2222             }
2223             if ( !a.getNode( "node b1" ).getNodeData().getTaxonomy().getCommonName().equals( "b1 species" ) ) {
2224                 return false;
2225             }
2226             final Phylogeny[] phylogenies_4 = factory.create( Test.PATH_TO_TEST_DATA + "special_characters.xml",
2227                                                               xml_parser );
2228             if ( xml_parser.getErrorCount() > 0 ) {
2229                 System.out.println( xml_parser.getErrorMessages().toString() );
2230                 return false;
2231             }
2232             if ( phylogenies_4.length != 1 ) {
2233                 return false;
2234             }
2235             final Phylogeny s = phylogenies_4[ 0 ];
2236             if ( s.getNumberOfExternalNodes() != 6 ) {
2237                 return false;
2238             }
2239             s.getNode( "first" );
2240             s.getNode( "<>" );
2241             s.getNode( "\"<a'b&c'd\">\"" );
2242             s.getNode( "'''\"" );
2243             s.getNode( "\"\"\"" );
2244             s.getNode( "dick & doof" );
2245         }
2246         catch ( final Exception e ) {
2247             e.printStackTrace( System.out );
2248             return false;
2249         }
2250         return true;
2251     }
2252
2253     private static boolean testBasicProtein() {
2254         try {
2255             final BasicProtein p0 = new BasicProtein( "p0", "owl", 0 );
2256             final Domain a = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 5, 0.1, -12 );
2257             final Domain b = new BasicDomain( "b", 11, 20, ( short ) 1, ( short ) 5, 0.1, -12 );
2258             final Domain c = new BasicDomain( "c", 9, 23, ( short ) 1, ( short ) 5, 0.1, -12 );
2259             final Domain d = new BasicDomain( "d", 15, 30, ( short ) 1, ( short ) 5, 0.1, -12 );
2260             final Domain e = new BasicDomain( "e", 60, 70, ( short ) 1, ( short ) 5, 0.1, -12 );
2261             final Domain x = new BasicDomain( "x", 100, 110, ( short ) 1, ( short ) 5, 0.1, -12 );
2262             final Domain y = new BasicDomain( "y", 100, 110, ( short ) 1, ( short ) 5, 0.1, -12 );
2263             p0.addProteinDomain( y );
2264             p0.addProteinDomain( e );
2265             p0.addProteinDomain( b );
2266             p0.addProteinDomain( c );
2267             p0.addProteinDomain( d );
2268             p0.addProteinDomain( a );
2269             p0.addProteinDomain( x );
2270             if ( !p0.toDomainArchitectureString( "~" ).equals( "a~b~c~d~e~x~y" ) ) {
2271                 return false;
2272             }
2273             if ( !p0.toDomainArchitectureString( "~", 3, "=" ).equals( "a~b~c~d~e~x~y" ) ) {
2274                 return false;
2275             }
2276             //
2277             final BasicProtein aa0 = new BasicProtein( "aa", "owl", 0 );
2278             final Domain a1 = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 5, 0.1, -12 );
2279             aa0.addProteinDomain( a1 );
2280             if ( !aa0.toDomainArchitectureString( "~" ).equals( "a" ) ) {
2281                 return false;
2282             }
2283             if ( !aa0.toDomainArchitectureString( "~", 3, "" ).equals( "a" ) ) {
2284                 return false;
2285             }
2286             //
2287             final BasicProtein aa1 = new BasicProtein( "aa", "owl", 0 );
2288             final Domain a11 = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 5, 0.1, -12 );
2289             final Domain a12 = new BasicDomain( "a", 2, 20, ( short ) 1, ( short ) 5, 0.1, -12 );
2290             aa1.addProteinDomain( a11 );
2291             aa1.addProteinDomain( a12 );
2292             if ( !aa1.toDomainArchitectureString( "~" ).equals( "a~a" ) ) {
2293                 return false;
2294             }
2295             if ( !aa1.toDomainArchitectureString( "~", 3, "" ).equals( "a~a" ) ) {
2296                 return false;
2297             }
2298             aa1.addProteinDomain( new BasicDomain( "a", 20, 30, ( short ) 1, ( short ) 5, 0.1, -12 ) );
2299             if ( !aa1.toDomainArchitectureString( "~" ).equals( "a~a~a" ) ) {
2300                 return false;
2301             }
2302             if ( !aa1.toDomainArchitectureString( "~", 3, "" ).equals( "aaa" ) ) {
2303                 return false;
2304             }
2305             if ( !aa1.toDomainArchitectureString( "~", 4, "" ).equals( "a~a~a" ) ) {
2306                 return false;
2307             }
2308             aa1.addProteinDomain( new BasicDomain( "a", 30, 40, ( short ) 1, ( short ) 5, 0.1, -12 ) );
2309             if ( !aa1.toDomainArchitectureString( "~" ).equals( "a~a~a~a" ) ) {
2310                 return false;
2311             }
2312             if ( !aa1.toDomainArchitectureString( "~", 3, "" ).equals( "aaa" ) ) {
2313                 return false;
2314             }
2315             if ( !aa1.toDomainArchitectureString( "~", 4, "" ).equals( "aaa" ) ) {
2316                 return false;
2317             }
2318             if ( !aa1.toDomainArchitectureString( "~", 5, "" ).equals( "a~a~a~a" ) ) {
2319                 return false;
2320             }
2321             aa1.addProteinDomain( new BasicDomain( "b", 32, 40, ( short ) 1, ( short ) 5, 0.1, -12 ) );
2322             if ( !aa1.toDomainArchitectureString( "~" ).equals( "a~a~a~a~b" ) ) {
2323                 return false;
2324             }
2325             if ( !aa1.toDomainArchitectureString( "~", 3, "" ).equals( "aaa~b" ) ) {
2326                 return false;
2327             }
2328             if ( !aa1.toDomainArchitectureString( "~", 4, "" ).equals( "aaa~b" ) ) {
2329                 return false;
2330             }
2331             if ( !aa1.toDomainArchitectureString( "~", 5, "" ).equals( "a~a~a~a~b" ) ) {
2332                 return false;
2333             }
2334             aa1.addProteinDomain( new BasicDomain( "c", 1, 2, ( short ) 1, ( short ) 5, 0.1, -12 ) );
2335             if ( !aa1.toDomainArchitectureString( "~" ).equals( "c~a~a~a~a~b" ) ) {
2336                 return false;
2337             }
2338             if ( !aa1.toDomainArchitectureString( "~", 3, "" ).equals( "c~aaa~b" ) ) {
2339                 return false;
2340             }
2341             if ( !aa1.toDomainArchitectureString( "~", 4, "" ).equals( "c~aaa~b" ) ) {
2342                 return false;
2343             }
2344             if ( !aa1.toDomainArchitectureString( "~", 5, "" ).equals( "c~a~a~a~a~b" ) ) {
2345                 return false;
2346             }
2347             //
2348             final BasicProtein p00 = new BasicProtein( "p0", "owl", 0 );
2349             final Domain a0 = new BasicDomain( "a", 1, 10, ( short ) 1, ( short ) 5, 0.1, -12 );
2350             final Domain b0 = new BasicDomain( "b", 11, 20, ( short ) 1, ( short ) 5, 0.1, -12 );
2351             final Domain c0 = new BasicDomain( "c", 9, 23, ( short ) 1, ( short ) 5, 0.1, -12 );
2352             final Domain d0 = new BasicDomain( "d", 15, 30, ( short ) 1, ( short ) 5, 0.1, -12 );
2353             final Domain e0 = new BasicDomain( "e", 60, 70, ( short ) 1, ( short ) 5, 0.1, -12 );
2354             final Domain e1 = new BasicDomain( "e", 61, 71, ( short ) 1, ( short ) 5, 0.1, -12 );
2355             final Domain e2 = new BasicDomain( "e", 62, 72, ( short ) 1, ( short ) 5, 0.1, -12 );
2356             final Domain e3 = new BasicDomain( "e", 63, 73, ( short ) 1, ( short ) 5, 0.1, -12 );
2357             final Domain e4 = new BasicDomain( "e", 64, 74, ( short ) 1, ( short ) 5, 0.1, -12 );
2358             final Domain e5 = new BasicDomain( "e", 65, 75, ( short ) 1, ( short ) 5, 0.1, -12 );
2359             final Domain x0 = new BasicDomain( "x", 100, 110, ( short ) 1, ( short ) 5, 0.1, -12 );
2360             final Domain y0 = new BasicDomain( "y", 100, 110, ( short ) 1, ( short ) 5, 0.1, -12 );
2361             final Domain y1 = new BasicDomain( "y", 120, 130, ( short ) 1, ( short ) 5, 0.1, -12 );
2362             final Domain y2 = new BasicDomain( "y", 140, 150, ( short ) 1, ( short ) 5, 0.1, -12 );
2363             final Domain y3 = new BasicDomain( "y", 160, 170, ( short ) 1, ( short ) 5, 0.1, -12 );
2364             final Domain z0 = new BasicDomain( "z", 200, 210, ( short ) 1, ( short ) 5, 0.1, -12 );
2365             final Domain z1 = new BasicDomain( "z", 300, 310, ( short ) 1, ( short ) 5, 0.1, -12 );
2366             final Domain z2 = new BasicDomain( "z", 400, 410, ( short ) 1, ( short ) 5, 0.1, -12 );
2367             final Domain zz0 = new BasicDomain( "Z", 500, 510, ( short ) 1, ( short ) 5, 0.1, -12 );
2368             final Domain zz1 = new BasicDomain( "Z", 600, 610, ( short ) 1, ( short ) 5, 0.1, -12 );
2369             p00.addProteinDomain( y0 );
2370             p00.addProteinDomain( e0 );
2371             p00.addProteinDomain( b0 );
2372             p00.addProteinDomain( c0 );
2373             p00.addProteinDomain( d0 );
2374             p00.addProteinDomain( a0 );
2375             p00.addProteinDomain( x0 );
2376             p00.addProteinDomain( y1 );
2377             p00.addProteinDomain( y2 );
2378             p00.addProteinDomain( y3 );
2379             p00.addProteinDomain( e1 );
2380             p00.addProteinDomain( e2 );
2381             p00.addProteinDomain( e3 );
2382             p00.addProteinDomain( e4 );
2383             p00.addProteinDomain( e5 );
2384             p00.addProteinDomain( z0 );
2385             p00.addProteinDomain( z1 );
2386             p00.addProteinDomain( z2 );
2387             p00.addProteinDomain( zz0 );
2388             p00.addProteinDomain( zz1 );
2389             if ( !p00.toDomainArchitectureString( "~", 3, "" ).equals( "a~b~c~d~eee~x~yyy~zzz~Z~Z" ) ) {
2390                 return false;
2391             }
2392             if ( !p00.toDomainArchitectureString( "~", 4, "" ).equals( "a~b~c~d~eee~x~yyy~z~z~z~Z~Z" ) ) {
2393                 return false;
2394             }
2395             if ( !p00.toDomainArchitectureString( "~", 5, "" ).equals( "a~b~c~d~eee~x~y~y~y~y~z~z~z~Z~Z" ) ) {
2396                 return false;
2397             }
2398             if ( !p00.toDomainArchitectureString( "~", 6, "" ).equals( "a~b~c~d~eee~x~y~y~y~y~z~z~z~Z~Z" ) ) {
2399                 return false;
2400             }
2401             if ( !p00.toDomainArchitectureString( "~", 7, "" ).equals( "a~b~c~d~e~e~e~e~e~e~x~y~y~y~y~z~z~z~Z~Z" ) ) {
2402                 return false;
2403             }
2404             // A0  A10  B15  A20  B25  A30  B35  B40  C50  A60  C70  D80
2405             final Domain A0 = new BasicDomain( "A", 0, 25, ( short ) 1, ( short ) 4, 0.1, -12 );
2406             final Domain A10 = new BasicDomain( "A", 10, 11, ( short ) 1, ( short ) 4, 0.1, -12 );
2407             final Domain B15 = new BasicDomain( "B", 11, 16, ( short ) 1, ( short ) 4, 0.1, -12 );
2408             final Domain A20 = new BasicDomain( "A", 20, 100, ( short ) 1, ( short ) 4, 0.1, -12 );
2409             final Domain B25 = new BasicDomain( "B", 25, 26, ( short ) 1, ( short ) 4, 0.1, -12 );
2410             final Domain A30 = new BasicDomain( "A", 30, 31, ( short ) 1, ( short ) 4, 0.1, -12 );
2411             final Domain B35 = new BasicDomain( "B", 31, 40, ( short ) 1, ( short ) 4, 0.1, -12 );
2412             final Domain B40 = new BasicDomain( "B", 40, 600, ( short ) 1, ( short ) 4, 0.1, -12 );
2413             final Domain C50 = new BasicDomain( "C", 50, 59, ( short ) 1, ( short ) 4, 0.1, -12 );
2414             final Domain A60 = new BasicDomain( "A", 60, 395, ( short ) 1, ( short ) 4, 0.1, -12 );
2415             final Domain C70 = new BasicDomain( "C", 70, 71, ( short ) 1, ( short ) 4, 0.1, -12 );
2416             final Domain D80 = new BasicDomain( "D", 80, 81, ( short ) 1, ( short ) 4, 0.1, -12 );
2417             final BasicProtein p = new BasicProtein( "p", "owl", 0 );
2418             p.addProteinDomain( B15 );
2419             p.addProteinDomain( C50 );
2420             p.addProteinDomain( A60 );
2421             p.addProteinDomain( A30 );
2422             p.addProteinDomain( C70 );
2423             p.addProteinDomain( B35 );
2424             p.addProteinDomain( B40 );
2425             p.addProteinDomain( A0 );
2426             p.addProteinDomain( A10 );
2427             p.addProteinDomain( A20 );
2428             p.addProteinDomain( B25 );
2429             p.addProteinDomain( D80 );
2430             List<String> domains_ids = new ArrayList<String>();
2431             domains_ids.add( "A" );
2432             domains_ids.add( "B" );
2433             domains_ids.add( "C" );
2434             if ( !p.contains( domains_ids, false ) ) {
2435                 return false;
2436             }
2437             if ( !p.contains( domains_ids, true ) ) {
2438                 return false;
2439             }
2440             domains_ids.add( "X" );
2441             if ( p.contains( domains_ids, false ) ) {
2442                 return false;
2443             }
2444             if ( p.contains( domains_ids, true ) ) {
2445                 return false;
2446             }
2447             domains_ids = new ArrayList<String>();
2448             domains_ids.add( "A" );
2449             domains_ids.add( "C" );
2450             domains_ids.add( "D" );
2451             if ( !p.contains( domains_ids, false ) ) {
2452                 return false;
2453             }
2454             if ( !p.contains( domains_ids, true ) ) {
2455                 return false;
2456             }
2457             domains_ids = new ArrayList<String>();
2458             domains_ids.add( "A" );
2459             domains_ids.add( "D" );
2460             domains_ids.add( "C" );
2461             if ( !p.contains( domains_ids, false ) ) {
2462                 return false;
2463             }
2464             if ( p.contains( domains_ids, true ) ) {
2465                 return false;
2466             }
2467             domains_ids = new ArrayList<String>();
2468             domains_ids.add( "A" );
2469             domains_ids.add( "A" );
2470             domains_ids.add( "B" );
2471             if ( !p.contains( domains_ids, false ) ) {
2472                 return false;
2473             }
2474             if ( !p.contains( domains_ids, true ) ) {
2475                 return false;
2476             }
2477             domains_ids = new ArrayList<String>();
2478             domains_ids.add( "A" );
2479             domains_ids.add( "A" );
2480             domains_ids.add( "A" );
2481             domains_ids.add( "B" );
2482             domains_ids.add( "B" );
2483             if ( !p.contains( domains_ids, false ) ) {
2484                 return false;
2485             }
2486             if ( !p.contains( domains_ids, true ) ) {
2487                 return false;
2488             }
2489             domains_ids = new ArrayList<String>();
2490             domains_ids.add( "A" );
2491             domains_ids.add( "A" );
2492             domains_ids.add( "B" );
2493             domains_ids.add( "A" );
2494             domains_ids.add( "B" );
2495             domains_ids.add( "B" );
2496             domains_ids.add( "A" );
2497             domains_ids.add( "B" );
2498             domains_ids.add( "C" );
2499             domains_ids.add( "A" );
2500             domains_ids.add( "C" );
2501             domains_ids.add( "D" );
2502             if ( !p.contains( domains_ids, false ) ) {
2503                 return false;
2504             }
2505             if ( p.contains( domains_ids, true ) ) {
2506                 return false;
2507             }
2508         }
2509         catch ( final Exception e ) {
2510             e.printStackTrace( System.out );
2511             return false;
2512         }
2513         return true;
2514     }
2515
2516     private static boolean testBasicTable() {
2517         try {
2518             final BasicTable<String> t0 = new BasicTable<String>();
2519             if ( t0.getNumberOfColumns() != 0 ) {
2520                 return false;
2521             }
2522             if ( t0.getNumberOfRows() != 0 ) {
2523                 return false;
2524             }
2525             t0.setValue( 3, 2, "23" );
2526             t0.setValue( 10, 1, "error" );
2527             t0.setValue( 10, 1, "110" );
2528             t0.setValue( 9, 1, "19" );
2529             t0.setValue( 1, 10, "101" );
2530             t0.setValue( 10, 10, "1010" );
2531             t0.setValue( 100, 10, "10100" );
2532             t0.setValue( 0, 0, "00" );
2533             if ( !t0.getValue( 3, 2 ).equals( "23" ) ) {
2534                 return false;
2535             }
2536             if ( !t0.getValue( 10, 1 ).equals( "110" ) ) {
2537                 return false;
2538             }
2539             if ( !t0.getValueAsString( 1, 10 ).equals( "101" ) ) {
2540                 return false;
2541             }
2542             if ( !t0.getValueAsString( 10, 10 ).equals( "1010" ) ) {
2543                 return false;
2544             }
2545             if ( !t0.getValueAsString( 100, 10 ).equals( "10100" ) ) {
2546                 return false;
2547             }
2548             if ( !t0.getValueAsString( 9, 1 ).equals( "19" ) ) {
2549                 return false;
2550             }
2551             if ( !t0.getValueAsString( 0, 0 ).equals( "00" ) ) {
2552                 return false;
2553             }
2554             if ( t0.getNumberOfColumns() != 101 ) {
2555                 return false;
2556             }
2557             if ( t0.getNumberOfRows() != 11 ) {
2558                 return false;
2559             }
2560             if ( t0.getValueAsString( 49, 4 ) != null ) {
2561                 return false;
2562             }
2563             final String l = ForesterUtil.getLineSeparator();
2564             final StringBuffer source = new StringBuffer();
2565             source.append( "" + l );
2566             source.append( "# 1 1 1 1 1 1 1 1" + l );
2567             source.append( " 00 01 02 03" + l );
2568             source.append( "   10 11 12 13  " + l );
2569             source.append( "20 21 22 23 " + l );
2570             source.append( "    30  31    32 33" + l );
2571             source.append( "40 41 42 43" + l );
2572             source.append( "  # 1 1 1 1 1 " + l );
2573             source.append( "50 51 52 53 54" + l );
2574             final BasicTable<String> t1 = BasicTableParser.parse( source.toString(), ' ' );
2575             if ( t1.getNumberOfColumns() != 5 ) {
2576                 return false;
2577             }
2578             if ( t1.getNumberOfRows() != 6 ) {
2579                 return false;
2580             }
2581             if ( !t1.getValueAsString( 0, 0 ).equals( "00" ) ) {
2582                 return false;
2583             }
2584             if ( !t1.getValueAsString( 1, 0 ).equals( "01" ) ) {
2585                 return false;
2586             }
2587             if ( !t1.getValueAsString( 3, 0 ).equals( "03" ) ) {
2588                 return false;
2589             }
2590             if ( !t1.getValueAsString( 4, 5 ).equals( "54" ) ) {
2591                 return false;
2592             }
2593             final StringBuffer source1 = new StringBuffer();
2594             source1.append( "" + l );
2595             source1.append( "# 1; 1; 1; 1 ;1 ;1; 1 ;1;" + l );
2596             source1.append( " 00; 01 ;02;03" + l );
2597             source1.append( "   10; 11; 12; 13  " + l );
2598             source1.append( "20; 21; 22; 23 " + l );
2599             source1.append( "    30;  31;    32; 33" + l );
2600             source1.append( "40;41;42;43" + l );
2601             source1.append( "  # 1 1 1 1 1 " + l );
2602             source1.append( ";;;50  ;  ;52; 53;;54   " + l );
2603             final BasicTable<String> t2 = BasicTableParser.parse( source1.toString(), ';' );
2604             if ( t2.getNumberOfColumns() != 5 ) {
2605                 return false;
2606             }
2607             if ( t2.getNumberOfRows() != 6 ) {
2608                 return false;
2609             }
2610             if ( !t2.getValueAsString( 0, 0 ).equals( "00" ) ) {
2611                 return false;
2612             }
2613             if ( !t2.getValueAsString( 1, 0 ).equals( "01" ) ) {
2614                 return false;
2615             }
2616             if ( !t2.getValueAsString( 3, 0 ).equals( "03" ) ) {
2617                 return false;
2618             }
2619             if ( !t2.getValueAsString( 3, 3 ).equals( "33" ) ) {
2620                 return false;
2621             }
2622             if ( !t2.getValueAsString( 3, 5 ).equals( "53" ) ) {
2623                 return false;
2624             }
2625             if ( !t2.getValueAsString( 1, 5 ).equals( "" ) ) {
2626                 return false;
2627             }
2628             final StringBuffer source2 = new StringBuffer();
2629             source2.append( "" + l );
2630             source2.append( "comment: 1; 1; 1; 1 ;1 ;1; 1 ;1;" + l );
2631             source2.append( " 00; 01 ;02;03" + l );
2632             source2.append( "   10; 11; 12; 13  " + l );
2633             source2.append( "20; 21; 22; 23 " + l );
2634             source2.append( "                     " + l );
2635             source2.append( "    30;  31;    32; 33" + l );
2636             source2.append( "40;41;42;43" + l );
2637             source2.append( "  comment: 1 1 1 1 1 " + l );
2638             source2.append( ";;;50  ;   52; 53;;54   " + l );
2639             final List<BasicTable<String>> tl = BasicTableParser.parse( source2.toString(),
2640                                                                         ';',
2641                                                                         false,
2642                                                                         false,
2643                                                                         "comment:",
2644                                                                         false );
2645             if ( tl.size() != 2 ) {
2646                 return false;
2647             }
2648             final BasicTable<String> t3 = tl.get( 0 );
2649             final BasicTable<String> t4 = tl.get( 1 );
2650             if ( t3.getNumberOfColumns() != 4 ) {
2651                 return false;
2652             }
2653             if ( t3.getNumberOfRows() != 3 ) {
2654                 return false;
2655             }
2656             if ( t4.getNumberOfColumns() != 4 ) {
2657                 return false;
2658             }
2659             if ( t4.getNumberOfRows() != 3 ) {
2660                 return false;
2661             }
2662             if ( !t3.getValueAsString( 0, 0 ).equals( "00" ) ) {
2663                 return false;
2664             }
2665             if ( !t4.getValueAsString( 0, 0 ).equals( "30" ) ) {
2666                 return false;
2667             }
2668         }
2669         catch ( final Exception e ) {
2670             e.printStackTrace( System.out );
2671             return false;
2672         }
2673         return true;
2674     }
2675
2676     private static boolean testBasicTolXMLparsing() {
2677         try {
2678             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
2679             final TolParser parser = new TolParser();
2680             final Phylogeny[] phylogenies_0 = factory.create( Test.PATH_TO_TEST_DATA + "tol_2484.tol", parser );
2681             if ( parser.getErrorCount() > 0 ) {
2682                 System.out.println( parser.getErrorMessages().toString() );
2683                 return false;
2684             }
2685             if ( phylogenies_0.length != 1 ) {
2686                 return false;
2687             }
2688             final Phylogeny t1 = phylogenies_0[ 0 ];
2689             if ( t1.getNumberOfExternalNodes() != 5 ) {
2690                 return false;
2691             }
2692             if ( !t1.isRooted() ) {
2693                 return false;
2694             }
2695             if ( !t1.getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Mesozoa" ) ) {
2696                 return false;
2697             }
2698             if ( !t1.getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "2484" ) ) {
2699                 return false;
2700             }
2701             if ( !t1.getRoot().getChildNode( 0 ).getNodeData().getTaxonomy().getScientificName().equals( "Rhombozoa" ) ) {
2702                 return false;
2703             }
2704             if ( t1.getRoot().getChildNode( 0 ).getNumberOfDescendants() != 3 ) {
2705                 return false;
2706             }
2707             final Phylogeny[] phylogenies_1 = factory.create( Test.PATH_TO_TEST_DATA + "tol_2.tol", parser );
2708             if ( parser.getErrorCount() > 0 ) {
2709                 System.out.println( parser.getErrorMessages().toString() );
2710                 return false;
2711             }
2712             if ( phylogenies_1.length != 1 ) {
2713                 return false;
2714             }
2715             final Phylogeny t2 = phylogenies_1[ 0 ];
2716             if ( t2.getNumberOfExternalNodes() != 664 ) {
2717                 return false;
2718             }
2719             if ( !t2.isRooted() ) {
2720                 return false;
2721             }
2722             if ( !t2.getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Eubacteria" ) ) {
2723                 return false;
2724             }
2725             if ( !t2.getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "2" ) ) {
2726                 return false;
2727             }
2728             if ( t2.getRoot().getNumberOfDescendants() != 24 ) {
2729                 return false;
2730             }
2731             if ( t2.getRoot().getNumberOfDescendants() != 24 ) {
2732                 return false;
2733             }
2734             if ( !t2.getRoot().getChildNode( 0 ).getNodeData().getTaxonomy().getScientificName().equals( "Aquificae" ) ) {
2735                 return false;
2736             }
2737             if ( !t2.getRoot().getChildNode( 0 ).getChildNode( 0 ).getNodeData().getTaxonomy().getScientificName()
2738                     .equals( "Aquifex" ) ) {
2739                 return false;
2740             }
2741             final Phylogeny[] phylogenies_2 = factory.create( Test.PATH_TO_TEST_DATA + "tol_5.tol", parser );
2742             if ( parser.getErrorCount() > 0 ) {
2743                 System.out.println( parser.getErrorMessages().toString() );
2744                 return false;
2745             }
2746             if ( phylogenies_2.length != 1 ) {
2747                 return false;
2748             }
2749             final Phylogeny t3 = phylogenies_2[ 0 ];
2750             if ( t3.getNumberOfExternalNodes() != 184 ) {
2751                 return false;
2752             }
2753             if ( !t3.getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Viruses" ) ) {
2754                 return false;
2755             }
2756             if ( !t3.getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "5" ) ) {
2757                 return false;
2758             }
2759             if ( t3.getRoot().getNumberOfDescendants() != 6 ) {
2760                 return false;
2761             }
2762             final Phylogeny[] phylogenies_3 = factory.create( Test.PATH_TO_TEST_DATA + "tol_4567.tol", parser );
2763             if ( parser.getErrorCount() > 0 ) {
2764                 System.out.println( parser.getErrorMessages().toString() );
2765                 return false;
2766             }
2767             if ( phylogenies_3.length != 1 ) {
2768                 return false;
2769             }
2770             final Phylogeny t4 = phylogenies_3[ 0 ];
2771             if ( t4.getNumberOfExternalNodes() != 1 ) {
2772                 return false;
2773             }
2774             if ( !t4.getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Marpissa decorata" ) ) {
2775                 return false;
2776             }
2777             if ( !t4.getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "4567" ) ) {
2778                 return false;
2779             }
2780             if ( t4.getRoot().getNumberOfDescendants() != 0 ) {
2781                 return false;
2782             }
2783             final Phylogeny[] phylogenies_4 = factory.create( Test.PATH_TO_TEST_DATA + "tol_16299.tol", parser );
2784             if ( parser.getErrorCount() > 0 ) {
2785                 System.out.println( parser.getErrorMessages().toString() );
2786                 return false;
2787             }
2788             if ( phylogenies_4.length != 1 ) {
2789                 return false;
2790             }
2791             final Phylogeny t5 = phylogenies_4[ 0 ];
2792             if ( t5.getNumberOfExternalNodes() != 13 ) {
2793                 return false;
2794             }
2795             if ( !t5.getRoot().getNodeData().getTaxonomy().getScientificName().equals( "Hominidae" ) ) {
2796                 return false;
2797             }
2798             if ( !t5.getRoot().getNodeData().getTaxonomy().getIdentifier().getValue().equals( "16299" ) ) {
2799                 return false;
2800             }
2801             if ( t5.getRoot().getNumberOfDescendants() != 2 ) {
2802                 return false;
2803             }
2804         }
2805         catch ( final Exception e ) {
2806             e.printStackTrace( System.out );
2807             return false;
2808         }
2809         return true;
2810     }
2811
2812     private static boolean testBasicTreeMethods() {
2813         try {
2814             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
2815             final Phylogeny t2 = factory.create( "((A:1,B:2)AB:1,(C:3,D:5)CD:3)ABCD:0.5", new NHXParser() )[ 0 ];
2816             if ( t2.getNumberOfExternalNodes() != 4 ) {
2817                 return false;
2818             }
2819             if ( t2.getHeight() != 8.5 ) {
2820                 return false;
2821             }
2822             if ( !t2.isCompletelyBinary() ) {
2823                 return false;
2824             }
2825             if ( t2.isEmpty() ) {
2826                 return false;
2827             }
2828             final Phylogeny t3 = factory.create( "((A:1,B:2,C:10)ABC:1,(D:3,E:5)DE:3)", new NHXParser() )[ 0 ];
2829             if ( t3.getNumberOfExternalNodes() != 5 ) {
2830                 return false;
2831             }
2832             if ( t3.getHeight() != 11 ) {
2833                 return false;
2834             }
2835             if ( t3.isCompletelyBinary() ) {
2836                 return false;
2837             }
2838             final PhylogenyNode n = t3.getNode( "ABC" );
2839             final Phylogeny t4 = factory.create( "((A:1,B:2,C:10)ABC:1,(D:3,E:5)DE:3,(F,G,H,I))", new NHXParser() )[ 0 ];
2840             if ( t4.getNumberOfExternalNodes() != 9 ) {
2841                 return false;
2842             }
2843             if ( t4.getHeight() != 11 ) {
2844                 return false;
2845             }
2846             if ( t4.isCompletelyBinary() ) {
2847                 return false;
2848             }
2849             final StringBuffer sb5 = new StringBuffer( "(((A11:2)A1:2,(A21:1,A22:2,A23)A2:11,A3:2)A:2,B:10,C:3,D:8)" );
2850             final Phylogeny t5 = factory.create( sb5, new NHXParser() )[ 0 ];
2851             if ( t5.getNumberOfExternalNodes() != 8 ) {
2852                 return false;
2853             }
2854             if ( t5.getHeight() != 15 ) {
2855                 return false;
2856             }
2857             final StringBuffer sb6 = new StringBuffer( "(X,Y,Z,(((A111)A11:2)A1:2,(X,Y,Z,A21:1,A22:2,A23)A2:11,A3:2)A:2,B:10,C:3,D:8)" );
2858             final Phylogeny t6 = factory.create( sb6, new NHXParser() )[ 0 ];
2859             if ( t6.getHeight() != 15 ) {
2860                 return false;
2861             }
2862             final StringBuffer sb7 = new StringBuffer( "(((A11:2)A1:2,(A21:1,A22:2,A23)A2:11,A3:2)A:2,B:10,C:15,D:8)" );
2863             final Phylogeny t7 = factory.create( sb7, new NHXParser() )[ 0 ];
2864             if ( t7.getHeight() != 15 ) {
2865                 return false;
2866             }
2867             final StringBuffer sb8 = new StringBuffer( "(((A11:11)A1:2,(A21:2,A22:2,A23,A24,AA:)A2:11,A3:2)A:2,B:15,C:15,D:15)" );
2868             final Phylogeny t8 = factory.create( sb8, new NHXParser() )[ 0 ];
2869             if ( t8.getNumberOfExternalNodes() != 10 ) {
2870                 return false;
2871             }
2872             if ( t8.getHeight() != 15 ) {
2873                 return false;
2874             }
2875             final char[] a9 = new char[] { 'a' };
2876             final Phylogeny t9 = factory.create( a9, new NHXParser() )[ 0 ];
2877             if ( t9.getHeight() != 0 ) {
2878                 return false;
2879             }
2880             final char[] a10 = new char[] { 'a', ':', '6' };
2881             final Phylogeny t10 = factory.create( a10, new NHXParser() )[ 0 ];
2882             if ( t10.getHeight() != 6 ) {
2883                 return false;
2884             }
2885         }
2886         catch ( final Exception e ) {
2887             e.printStackTrace( System.out );
2888             return false;
2889         }
2890         return true;
2891     }
2892
2893     private static boolean testConfidenceAssessor() {
2894         try {
2895             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
2896             final Phylogeny t0 = factory.create( "((((A,B)ab,C)abc,D)abcd,E)abcde", new NHXParser() )[ 0 ];
2897             final Phylogeny[] ev0 = factory
2898                     .create( "((((A,B),C),D),E);((((A,B),C),D),E);((((A,B),C),D),E);((((A,B),C),D),E);",
2899                              new NHXParser() );
2900             ConfidenceAssessor.evaluate( "bootstrap", ev0, t0, false, 1, 0, 2 );
2901             if ( !isEqual( t0.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue(), 3 ) ) {
2902                 return false;
2903             }
2904             if ( !isEqual( t0.getNode( "abc" ).getBranchData().getConfidence( 0 ).getValue(), 3 ) ) {
2905                 return false;
2906             }
2907             final Phylogeny t1 = factory.create( "((((A,B)ab[&&NHX:B=50],C)abc,D)abcd,E)abcde", new NHXParser() )[ 0 ];
2908             final Phylogeny[] ev1 = factory
2909                     .create( "((((A,B),C),D),E);((A,B),((E,D),C));(((A,B),C),(E,D));(A,(((E,D),C),B));(B,(A,((E,D),C)));(C,((E,D),(A,B)));(D,(E,((A,B),C)));",
2910                              new NHXParser() );
2911             ConfidenceAssessor.evaluate( "bootstrap", ev1, t1, false, 1 );
2912             if ( !isEqual( t1.getNode( "ab" ).getBranchData().getConfidence( 1 ).getValue(), 7 ) ) {
2913                 return false;
2914             }
2915             if ( !isEqual( t1.getNode( "abc" ).getBranchData().getConfidence( 0 ).getValue(), 7 ) ) {
2916                 return false;
2917             }
2918             final Phylogeny t_b = factory.create( "((((A,C)ac,D)acd,E)acde,B)abcde", new NHXParser() )[ 0 ];
2919             final Phylogeny[] ev_b = factory
2920                     .create( "((A,C),X);((A,X),C);(A,C);((((A,B),C),D),E);((A,B),((E,D),C));(((A,B),C),(E,D));(A,(((E,D),C),B));(B,(A,((E,D),C)));(C,((E,D),(A,B)));(D,(E,((A,B),C)));((((A,C)ac,D)acd,E)acde,B)abcd",
2921                              new NHXParser() );
2922             ConfidenceAssessor.evaluate( "bootstrap", ev_b, t_b, false, 1 );
2923             if ( !isEqual( t_b.getNode( "ac" ).getBranchData().getConfidence( 0 ).getValue(), 4 ) ) {
2924                 return false;
2925             }
2926             if ( !isEqual( t_b.getNode( "acd" ).getBranchData().getConfidence( 0 ).getValue(), 1 ) ) {
2927                 return false;
2928             }
2929             //
2930             final Phylogeny t1x = factory.create( "((((A,B)ab,C)abc,D)abcd,E)abcde", new NHXParser() )[ 0 ];
2931             final Phylogeny[] ev1x = factory
2932                     .create( "((((A,B),C),D),E);((A,B),((E,D),C));(((A,B),C),(E,D));(A,(((E,D),C),B));(B,(A,((E,D),C)));(C,((E,D),(A,B)));(D,(E,((A,B),C)));",
2933                              new NHXParser() );
2934             ConfidenceAssessor.evaluate( "bootstrap", ev1x, t1x, true, 1 );
2935             if ( !isEqual( t1x.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue(), 7 ) ) {
2936                 return false;
2937             }
2938             if ( !isEqual( t1x.getNode( "abc" ).getBranchData().getConfidence( 0 ).getValue(), 7 ) ) {
2939                 return false;
2940             }
2941             final Phylogeny t_bx = factory.create( "((((A,C)ac,D)acd,E)acde,B)abcde", new NHXParser() )[ 0 ];
2942             final Phylogeny[] ev_bx = factory
2943                     .create( "((((A,B),C),D),E);((A,B),((E,D),C));(((A,B),C),(E,D));(A,(((E,D),C),B));(B,(A,((E,D),C)));(C,((E,D),(A,B)));(D,(E,((A,B),C)));((((A,C)ac,D)acd,E)acde,B)abcd",
2944                              new NHXParser() );
2945             ConfidenceAssessor.evaluate( "bootstrap", ev_bx, t_bx, true, 1 );
2946             if ( !isEqual( t_bx.getNode( "ac" ).getBranchData().getConfidence( 0 ).getValue(), 1 ) ) {
2947                 return false;
2948             }
2949             if ( !isEqual( t_bx.getNode( "acd" ).getBranchData().getConfidence( 0 ).getValue(), 1 ) ) {
2950                 return false;
2951             }
2952             //
2953             final Phylogeny[] t2 = factory
2954                     .create( "((((a,b),c),d),e);(((a,b),c),(d,e));(((((a,b),c),d),e),f);((((a,b),c),(d,e)),f);(((a,b),c),d,e);((a,b,c),d,e);",
2955                              new NHXParser() );
2956             final Phylogeny[] ev2 = factory
2957                     .create( "((((a,b),c),d),e);((((a,b),c),d),e);((((a,b),e),d),c);((((a,b),e),d),c);(((a,b),(c,d)),e);((a,b),x);((a,b),(x,y));(a,b);(a,e);(a,b,c);",
2958                              new NHXParser() );
2959             for( final Phylogeny target : t2 ) {
2960                 ConfidenceAssessor.evaluate( "bootstrap", ev2, target, false, 1 );
2961             }
2962             //
2963             final Phylogeny t4 = factory.create( "((((((A,B)ab,C)abc,D)abcd,E)abcde,F)abcdef,G)abcdefg",
2964                                                  new NHXParser() )[ 0 ];
2965             final Phylogeny[] ev4 = factory.create( "(((A,B),C),(X,Y));((F,G),((A,B,C),(D,E)))", new NHXParser() );
2966             ConfidenceAssessor.evaluate( "bootstrap", ev4, t4, false, 1 );
2967             if ( !isEqual( t4.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue(), 1 ) ) {
2968                 return false;
2969             }
2970             if ( !isEqual( t4.getNode( "abc" ).getBranchData().getConfidence( 0 ).getValue(), 2 ) ) {
2971                 return false;
2972             }
2973             if ( !isEqual( t4.getNode( "abcde" ).getBranchData().getConfidence( 0 ).getValue(), 1 ) ) {
2974                 return false;
2975             }
2976         }
2977         catch ( final Exception e ) {
2978             e.printStackTrace();
2979             return false;
2980         }
2981         return true;
2982     }
2983
2984     private static boolean testCopyOfNodeData() {
2985         try {
2986             final PhylogenyNode n1 = PhylogenyNode
2987                     .createInstanceFromNhxString( "n5:0.1[&&NHX:S=Ecoli:E=1.1.1.1:D=Y:Co=Y:B=56:T=1:O=22:SO=33:SN=44:W=2:C=10.20.30:XN=S=tag1=value1=unit1]" );
2988             final PhylogenyNode n2 = n1.copyNodeData();
2989             if ( !n1.toNewHampshireX().equals( n2.toNewHampshireX() ) ) {
2990                 return false;
2991             }
2992         }
2993         catch ( final Exception e ) {
2994             e.printStackTrace();
2995             return false;
2996         }
2997         return true;
2998     }
2999
3000     private static boolean testCreateBalancedPhylogeny() {
3001         try {
3002             final Phylogeny p0 = DevelopmentTools.createBalancedPhylogeny( 6, 5 );
3003             if ( p0.getRoot().getNumberOfDescendants() != 5 ) {
3004                 return false;
3005             }
3006             if ( p0.getNumberOfExternalNodes() != 15625 ) {
3007                 return false;
3008             }
3009             final Phylogeny p1 = DevelopmentTools.createBalancedPhylogeny( 2, 10 );
3010             if ( p1.getRoot().getNumberOfDescendants() != 10 ) {
3011                 return false;
3012             }
3013             if ( p1.getNumberOfExternalNodes() != 100 ) {
3014                 return false;
3015             }
3016         }
3017         catch ( final Exception e ) {
3018             e.printStackTrace();
3019             return false;
3020         }
3021         return true;
3022     }
3023
3024     private static boolean testCreateUriForSeqWeb() {
3025         try {
3026             final PhylogenyNode n = new PhylogenyNode();
3027             n.setName( "tr|B3RJ64" );
3028             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.UNIPROT_KB + "B3RJ64" ) ) {
3029                 return false;
3030             }
3031             n.setName( "B0LM41_HUMAN" );
3032             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.UNIPROT_KB + "B0LM41_HUMAN" ) ) {
3033                 return false;
3034             }
3035             n.setName( "NP_001025424" );
3036             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_PROTEIN + "NP_001025424" ) ) {
3037                 return false;
3038             }
3039             n.setName( "_NM_001030253-" );
3040             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_NUCCORE + "NM_001030253" ) ) {
3041                 return false;
3042             }
3043             n.setName( "XM_002122186" );
3044             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_NUCCORE + "XM_002122186" ) ) {
3045                 return false;
3046             }
3047             n.setName( "dgh_AAA34956_gdg" );
3048             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_PROTEIN + "AAA34956" ) ) {
3049                 return false;
3050             }
3051             n.setName( "AAA34956" );
3052             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_PROTEIN + "AAA34956" ) ) {
3053                 return false;
3054             }
3055             n.setName( "GI:394892" );
3056             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_GI + "394892" ) ) {
3057                 System.out.println( TreePanelUtil.createUriForSeqWeb( n, null, null ) );
3058                 return false;
3059             }
3060             n.setName( "gi_394892" );
3061             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_GI + "394892" ) ) {
3062                 System.out.println( TreePanelUtil.createUriForSeqWeb( n, null, null ) );
3063                 return false;
3064             }
3065             n.setName( "gi6335_gi_394892_56635_Gi_43" );
3066             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.NCBI_GI + "394892" ) ) {
3067                 System.out.println( TreePanelUtil.createUriForSeqWeb( n, null, null ) );
3068                 return false;
3069             }
3070             n.setName( "P12345" );
3071             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.UNIPROT_KB + "P12345" ) ) {
3072                 System.out.println( TreePanelUtil.createUriForSeqWeb( n, null, null ) );
3073                 return false;
3074             }
3075             n.setName( "gi_fdgjmn-3jk5-243 mnefmn fg023-0 P12345 4395jtmnsrg02345m1ggi92450jrg890j4t0j240" );
3076             if ( !TreePanelUtil.createUriForSeqWeb( n, null, null ).equals( ForesterUtil.UNIPROT_KB + "P12345" ) ) {
3077                 System.out.println( TreePanelUtil.createUriForSeqWeb( n, null, null ) );
3078                 return false;
3079             }
3080         }
3081         catch ( final Exception e ) {
3082             e.printStackTrace( System.out );
3083             return false;
3084         }
3085         return true;
3086     }
3087
3088     private static boolean testDataObjects() {
3089         try {
3090             final Confidence s0 = new Confidence();
3091             final Confidence s1 = new Confidence();
3092             if ( !s0.isEqual( s1 ) ) {
3093                 return false;
3094             }
3095             final Confidence s2 = new Confidence( 0.23, "bootstrap" );
3096             final Confidence s3 = new Confidence( 0.23, "bootstrap" );
3097             if ( s2.isEqual( s1 ) ) {
3098                 return false;
3099             }
3100             if ( !s2.isEqual( s3 ) ) {
3101                 return false;
3102             }
3103             final Confidence s4 = ( Confidence ) s3.copy();
3104             if ( !s4.isEqual( s3 ) ) {
3105                 return false;
3106             }
3107             s3.asSimpleText();
3108             s3.asText();
3109             // Taxonomy
3110             // ----------
3111             final Taxonomy t1 = new Taxonomy();
3112             final Taxonomy t2 = new Taxonomy();
3113             final Taxonomy t3 = new Taxonomy();
3114             final Taxonomy t4 = new Taxonomy();
3115             final Taxonomy t5 = new Taxonomy();
3116             t1.setIdentifier( new Identifier( "ecoli" ) );
3117             t1.setTaxonomyCode( "ECOLI" );
3118             t1.setScientificName( "E. coli" );
3119             t1.setCommonName( "coli" );
3120             final Taxonomy t0 = ( Taxonomy ) t1.copy();
3121             if ( !t1.isEqual( t0 ) ) {
3122                 return false;
3123             }
3124             t2.setIdentifier( new Identifier( "ecoli" ) );
3125             t2.setTaxonomyCode( "OTHER" );
3126             t2.setScientificName( "what" );
3127             t2.setCommonName( "something" );
3128             if ( !t1.isEqual( t2 ) ) {
3129                 return false;
3130             }
3131             t2.setIdentifier( new Identifier( "nemve" ) );
3132             if ( t1.isEqual( t2 ) ) {
3133                 return false;
3134             }
3135             t1.setIdentifier( null );
3136             t3.setTaxonomyCode( "ECOLI" );
3137             t3.setScientificName( "what" );
3138             t3.setCommonName( "something" );
3139             if ( !t1.isEqual( t3 ) ) {
3140                 return false;
3141             }
3142             t1.setIdentifier( null );
3143             t1.setTaxonomyCode( "" );
3144             t4.setScientificName( "E. ColI" );
3145             t4.setCommonName( "something" );
3146             if ( !t1.isEqual( t4 ) ) {
3147                 return false;
3148             }
3149             t4.setScientificName( "B. subtilis" );
3150             t4.setCommonName( "something" );
3151             if ( t1.isEqual( t4 ) ) {
3152                 return false;
3153             }
3154             t1.setIdentifier( null );
3155             t1.setTaxonomyCode( "" );
3156             t1.setScientificName( "" );
3157             t5.setCommonName( "COLI" );
3158             if ( !t1.isEqual( t5 ) ) {
3159                 return false;
3160             }
3161             t5.setCommonName( "vibrio" );
3162             if ( t1.isEqual( t5 ) ) {
3163                 return false;
3164             }
3165             // Identifier
3166             // ----------
3167             final Identifier id0 = new Identifier( "123", "pfam" );
3168             final Identifier id1 = ( Identifier ) id0.copy();
3169             if ( !id1.isEqual( id1 ) ) {
3170                 return false;
3171             }
3172             if ( !id1.isEqual( id0 ) ) {
3173                 return false;
3174             }
3175             if ( !id0.isEqual( id1 ) ) {
3176                 return false;
3177             }
3178             id1.asSimpleText();
3179             id1.asText();
3180             // ProteinDomain
3181             // ---------------
3182             final ProteinDomain pd0 = new ProteinDomain( "abc", 100, 200 );
3183             final ProteinDomain pd1 = ( ProteinDomain ) pd0.copy();
3184             if ( !pd1.isEqual( pd1 ) ) {
3185                 return false;
3186             }
3187             if ( !pd1.isEqual( pd0 ) ) {
3188                 return false;
3189             }
3190             pd1.asSimpleText();
3191             pd1.asText();
3192             final ProteinDomain pd2 = new ProteinDomain( pd0.getName(), pd0.getFrom(), pd0.getTo(), "id" );
3193             final ProteinDomain pd3 = ( ProteinDomain ) pd2.copy();
3194             if ( !pd3.isEqual( pd3 ) ) {
3195                 return false;
3196             }
3197             if ( !pd2.isEqual( pd3 ) ) {
3198                 return false;
3199             }
3200             if ( !pd0.isEqual( pd3 ) ) {
3201                 return false;
3202             }
3203             pd3.asSimpleText();
3204             pd3.asText();
3205             // DomainArchitecture
3206             // ------------------
3207             final ProteinDomain d0 = new ProteinDomain( "domain0", 10, 20 );
3208             final ProteinDomain d1 = new ProteinDomain( "domain1", 30, 40 );
3209             final ProteinDomain d2 = new ProteinDomain( "domain2", 50, 60 );
3210             final ProteinDomain d3 = new ProteinDomain( "domain3", 70, 80 );
3211             final ProteinDomain d4 = new ProteinDomain( "domain4", 90, 100 );
3212             final ArrayList<PhylogenyData> domains0 = new ArrayList<PhylogenyData>();
3213             domains0.add( d2 );
3214             domains0.add( d0 );
3215             domains0.add( d3 );
3216             domains0.add( d1 );
3217             final DomainArchitecture ds0 = new DomainArchitecture( domains0, 110 );
3218             if ( ds0.getNumberOfDomains() != 4 ) {
3219                 return false;
3220             }
3221             final DomainArchitecture ds1 = ( DomainArchitecture ) ds0.copy();
3222             if ( !ds0.isEqual( ds0 ) ) {
3223                 return false;
3224             }
3225             if ( !ds0.isEqual( ds1 ) ) {
3226                 return false;
3227             }
3228             if ( ds1.getNumberOfDomains() != 4 ) {
3229                 return false;
3230             }
3231             final ArrayList<PhylogenyData> domains1 = new ArrayList<PhylogenyData>();
3232             domains1.add( d1 );
3233             domains1.add( d2 );
3234             domains1.add( d4 );
3235             domains1.add( d0 );
3236             final DomainArchitecture ds2 = new DomainArchitecture( domains1, 200 );
3237             if ( ds0.isEqual( ds2 ) ) {
3238                 return false;
3239             }
3240             ds1.asSimpleText();
3241             ds1.asText();
3242             ds1.toNHX();
3243             final DomainArchitecture ds3 = new DomainArchitecture( "120>30>40>0.9>b>50>60>0.4>c>10>20>0.1>a" );
3244             if ( !ds3.toNHX().toString().equals( ":DS=120>10>20>0.1>a>30>40>0.9>b>50>60>0.4>c" ) ) {
3245                 System.out.println( ds3.toNHX() );
3246                 return false;
3247             }
3248             if ( ds3.getNumberOfDomains() != 3 ) {
3249                 return false;
3250             }
3251             // Event
3252             // -----
3253             final Event e1 = new Event( Event.EventType.fusion );
3254             if ( e1.isDuplication() ) {
3255                 return false;
3256             }
3257             if ( !e1.isFusion() ) {
3258                 return false;
3259             }
3260             if ( !e1.asText().toString().equals( "fusion" ) ) {
3261                 return false;
3262             }
3263             if ( !e1.asSimpleText().toString().equals( "fusion" ) ) {
3264                 return false;
3265             }
3266             final Event e11 = new Event( Event.EventType.fusion );
3267             if ( !e11.isEqual( e1 ) ) {
3268                 return false;
3269             }
3270             if ( !e11.toNHX().toString().equals( "" ) ) {
3271                 return false;
3272             }
3273             final Event e2 = new Event( Event.EventType.speciation_or_duplication );
3274             if ( e2.isDuplication() ) {
3275                 return false;
3276             }
3277             if ( !e2.isSpeciationOrDuplication() ) {
3278                 return false;
3279             }
3280             if ( !e2.asText().toString().equals( "speciation_or_duplication" ) ) {
3281                 return false;
3282             }
3283             if ( !e2.asSimpleText().toString().equals( "?" ) ) {
3284                 return false;
3285             }
3286             if ( !e2.toNHX().toString().equals( ":D=?" ) ) {
3287                 return false;
3288             }
3289             if ( e11.isEqual( e2 ) ) {
3290                 return false;
3291             }
3292             final Event e2c = ( Event ) e2.copy();
3293             if ( !e2c.isEqual( e2 ) ) {
3294                 return false;
3295             }
3296             Event e3 = new Event( 1, 2, 3 );
3297             if ( e3.isDuplication() ) {
3298                 return false;
3299             }
3300             if ( e3.isSpeciation() ) {
3301                 return false;
3302             }
3303             if ( e3.isGeneLoss() ) {
3304                 return false;
3305             }
3306             if ( !e3.asText().toString().equals( "duplications [1] speciations [2] gene-losses [3]" ) ) {
3307                 return false;
3308             }
3309             final Event e3c = ( Event ) e3.copy();
3310             final Event e3cc = ( Event ) e3c.copy();
3311             if ( !e3c.asSimpleText().toString().equals( "D2S3L" ) ) {
3312                 return false;
3313             }
3314             e3 = null;
3315             if ( !e3c.isEqual( e3cc ) ) {
3316                 return false;
3317             }
3318             Event e4 = new Event( 1, 2, 3 );
3319             if ( !e4.asText().toString().equals( "duplications [1] speciations [2] gene-losses [3]" ) ) {
3320                 return false;
3321             }
3322             if ( !e4.asSimpleText().toString().equals( "D2S3L" ) ) {
3323                 return false;
3324             }
3325             final Event e4c = ( Event ) e4.copy();
3326             e4 = null;
3327             final Event e4cc = ( Event ) e4c.copy();
3328             if ( !e4cc.asText().toString().equals( "duplications [1] speciations [2] gene-losses [3]" ) ) {
3329                 return false;
3330             }
3331             if ( !e4c.isEqual( e4cc ) ) {
3332                 return false;
3333             }
3334             final Event e5 = new Event();
3335             if ( !e5.isUnassigned() ) {
3336                 return false;
3337             }
3338             if ( !e5.asText().toString().equals( "unassigned" ) ) {
3339                 return false;
3340             }
3341             if ( !e5.asSimpleText().toString().equals( "" ) ) {
3342                 return false;
3343             }
3344             final Event e6 = new Event( 1, 0, 0 );
3345             if ( !e6.asText().toString().equals( "duplication" ) ) {
3346                 return false;
3347             }
3348             if ( !e6.asSimpleText().toString().equals( "D" ) ) {
3349                 return false;
3350             }
3351             final Event e7 = new Event( 0, 1, 0 );
3352             if ( !e7.asText().toString().equals( "speciation" ) ) {
3353                 return false;
3354             }
3355             if ( !e7.asSimpleText().toString().equals( "S" ) ) {
3356                 return false;
3357             }
3358             final Event e8 = new Event( 0, 0, 1 );
3359             if ( !e8.asText().toString().equals( "gene-loss" ) ) {
3360                 return false;
3361             }
3362             if ( !e8.asSimpleText().toString().equals( "L" ) ) {
3363                 return false;
3364             }
3365         }
3366         catch ( final Exception e ) {
3367             e.printStackTrace( System.out );
3368             return false;
3369         }
3370         return true;
3371     }
3372
3373     private static boolean testDeletionOfExternalNodes() {
3374         try {
3375             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
3376             final Phylogeny t0 = factory.create( "A", new NHXParser() )[ 0 ];
3377             final PhylogenyWriter w = new PhylogenyWriter();
3378             if ( t0.isEmpty() ) {
3379                 return false;
3380             }
3381             if ( t0.getNumberOfExternalNodes() != 1 ) {
3382                 return false;
3383             }
3384             t0.deleteSubtree( t0.getNode( "A" ), false );
3385             if ( t0.getNumberOfExternalNodes() != 0 ) {
3386                 return false;
3387             }
3388             if ( !t0.isEmpty() ) {
3389                 return false;
3390             }
3391             final Phylogeny t1 = factory.create( "(A,B)r", new NHXParser() )[ 0 ];
3392             if ( t1.getNumberOfExternalNodes() != 2 ) {
3393                 return false;
3394             }
3395             t1.deleteSubtree( t1.getNode( "A" ), false );
3396             if ( t1.getNumberOfExternalNodes() != 1 ) {
3397                 return false;
3398             }
3399             if ( !t1.getNode( "B" ).getName().equals( "B" ) ) {
3400                 return false;
3401             }
3402             t1.deleteSubtree( t1.getNode( "B" ), false );
3403             if ( t1.getNumberOfExternalNodes() != 1 ) {
3404                 return false;
3405             }
3406             t1.deleteSubtree( t1.getNode( "r" ), false );
3407             if ( !t1.isEmpty() ) {
3408                 return false;
3409             }
3410             final Phylogeny t2 = factory.create( "((A,B),C)", new NHXParser() )[ 0 ];
3411             if ( t2.getNumberOfExternalNodes() != 3 ) {
3412                 return false;
3413             }
3414             t2.deleteSubtree( t2.getNode( "B" ), false );
3415             if ( t2.getNumberOfExternalNodes() != 2 ) {
3416                 return false;
3417             }
3418             t2.toNewHampshireX();
3419             PhylogenyNode n = t2.getNode( "A" );
3420             if ( !n.getNextExternalNode().getName().equals( "C" ) ) {
3421                 return false;
3422             }
3423             t2.deleteSubtree( t2.getNode( "A" ), false );
3424             if ( t2.getNumberOfExternalNodes() != 2 ) {
3425                 return false;
3426             }
3427             t2.deleteSubtree( t2.getNode( "C" ), true );
3428             if ( t2.getNumberOfExternalNodes() != 1 ) {
3429                 return false;
3430             }
3431             final Phylogeny t3 = factory.create( "((A,B),(C,D))", new NHXParser() )[ 0 ];
3432             if ( t3.getNumberOfExternalNodes() != 4 ) {
3433                 return false;
3434             }
3435             t3.deleteSubtree( t3.getNode( "B" ), true );
3436             if ( t3.getNumberOfExternalNodes() != 3 ) {
3437                 return false;
3438             }
3439             n = t3.getNode( "A" );
3440             if ( !n.getNextExternalNode().getName().equals( "C" ) ) {
3441                 return false;
3442             }
3443             n = n.getNextExternalNode();
3444             if ( !n.getNextExternalNode().getName().equals( "D" ) ) {
3445                 return false;
3446             }
3447             t3.deleteSubtree( t3.getNode( "A" ), true );
3448             if ( t3.getNumberOfExternalNodes() != 2 ) {
3449                 return false;
3450             }
3451             n = t3.getNode( "C" );
3452             if ( !n.getNextExternalNode().getName().equals( "D" ) ) {
3453                 return false;
3454             }
3455             t3.deleteSubtree( t3.getNode( "C" ), true );
3456             if ( t3.getNumberOfExternalNodes() != 1 ) {
3457                 return false;
3458             }
3459             t3.deleteSubtree( t3.getNode( "D" ), true );
3460             if ( t3.getNumberOfExternalNodes() != 0 ) {
3461                 return false;
3462             }
3463             final Phylogeny t4 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3464             if ( t4.getNumberOfExternalNodes() != 6 ) {
3465                 return false;
3466             }
3467             t4.deleteSubtree( t4.getNode( "B2" ), true );
3468             if ( t4.getNumberOfExternalNodes() != 5 ) {
3469                 return false;
3470             }
3471             String s = w.toNewHampshire( t4, false, true ).toString();
3472             if ( !s.equals( "((A,(B11,B12)),(C,D));" ) ) {
3473                 return false;
3474             }
3475             t4.deleteSubtree( t4.getNode( "B11" ), true );
3476             if ( t4.getNumberOfExternalNodes() != 4 ) {
3477                 return false;
3478             }
3479             t4.deleteSubtree( t4.getNode( "C" ), true );
3480             if ( t4.getNumberOfExternalNodes() != 3 ) {
3481                 return false;
3482             }
3483             n = t4.getNode( "A" );
3484             n = n.getNextExternalNode();
3485             if ( !n.getName().equals( "B12" ) ) {
3486                 return false;
3487             }
3488             n = n.getNextExternalNode();
3489             if ( !n.getName().equals( "D" ) ) {
3490                 return false;
3491             }
3492             s = w.toNewHampshire( t4, false, true ).toString();
3493             if ( !s.equals( "((A,B12),D);" ) ) {
3494                 return false;
3495             }
3496             final Phylogeny t5 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3497             t5.deleteSubtree( t5.getNode( "A" ), true );
3498             if ( t5.getNumberOfExternalNodes() != 5 ) {
3499                 return false;
3500             }
3501             s = w.toNewHampshire( t5, false, true ).toString();
3502             if ( !s.equals( "(((B11,B12),B2),(C,D));" ) ) {
3503                 return false;
3504             }
3505             final Phylogeny t6 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3506             t6.deleteSubtree( t6.getNode( "B11" ), true );
3507             if ( t6.getNumberOfExternalNodes() != 5 ) {
3508                 return false;
3509             }
3510             s = w.toNewHampshire( t6, false, false ).toString();
3511             if ( !s.equals( "((A,(B12,B2)),(C,D));" ) ) {
3512                 return false;
3513             }
3514             final Phylogeny t7 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3515             t7.deleteSubtree( t7.getNode( "B12" ), true );
3516             if ( t7.getNumberOfExternalNodes() != 5 ) {
3517                 return false;
3518             }
3519             s = w.toNewHampshire( t7, false, true ).toString();
3520             if ( !s.equals( "((A,(B11,B2)),(C,D));" ) ) {
3521                 return false;
3522             }
3523             final Phylogeny t8 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3524             t8.deleteSubtree( t8.getNode( "B2" ), true );
3525             if ( t8.getNumberOfExternalNodes() != 5 ) {
3526                 return false;
3527             }
3528             s = w.toNewHampshire( t8, false, false ).toString();
3529             if ( !s.equals( "((A,(B11,B12)),(C,D));" ) ) {
3530                 return false;
3531             }
3532             final Phylogeny t9 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3533             t9.deleteSubtree( t9.getNode( "C" ), true );
3534             if ( t9.getNumberOfExternalNodes() != 5 ) {
3535                 return false;
3536             }
3537             s = w.toNewHampshire( t9, false, true ).toString();
3538             if ( !s.equals( "((A,((B11,B12),B2)),D);" ) ) {
3539                 return false;
3540             }
3541             final Phylogeny t10 = factory.create( "((A,((B11,B12),B2)),(C,D))", new NHXParser() )[ 0 ];
3542             t10.deleteSubtree( t10.getNode( "D" ), true );
3543             if ( t10.getNumberOfExternalNodes() != 5 ) {
3544                 return false;
3545             }
3546             s = w.toNewHampshire( t10, false, true ).toString();
3547             if ( !s.equals( "((A,((B11,B12),B2)),C);" ) ) {
3548                 return false;
3549             }
3550             final Phylogeny t11 = factory.create( "(A,B,C)", new NHXParser() )[ 0 ];
3551             t11.deleteSubtree( t11.getNode( "A" ), true );
3552             if ( t11.getNumberOfExternalNodes() != 2 ) {
3553                 return false;
3554             }
3555             s = w.toNewHampshire( t11, false, true ).toString();
3556             if ( !s.equals( "(B,C);" ) ) {
3557                 return false;
3558             }
3559             t11.deleteSubtree( t11.getNode( "C" ), true );
3560             if ( t11.getNumberOfExternalNodes() != 1 ) {
3561                 return false;
3562             }
3563             s = w.toNewHampshire( t11, false, false ).toString();
3564             if ( !s.equals( "B;" ) ) {
3565                 return false;
3566             }
3567             final Phylogeny t12 = factory.create( "((A1,A2,A3),(B1,B2,B3),(C1,C2,C3))", new NHXParser() )[ 0 ];
3568             t12.deleteSubtree( t12.getNode( "B2" ), true );
3569             if ( t12.getNumberOfExternalNodes() != 8 ) {
3570                 return false;
3571             }
3572             s = w.toNewHampshire( t12, false, true ).toString();
3573             if ( !s.equals( "((A1,A2,A3),(B1,B3),(C1,C2,C3));" ) ) {
3574                 return false;
3575             }
3576             t12.deleteSubtree( t12.getNode( "B3" ), true );
3577             if ( t12.getNumberOfExternalNodes() != 7 ) {
3578                 return false;
3579             }
3580             s = w.toNewHampshire( t12, false, true ).toString();
3581             if ( !s.equals( "((A1,A2,A3),B1,(C1,C2,C3));" ) ) {
3582                 return false;
3583             }
3584             t12.deleteSubtree( t12.getNode( "C3" ), true );
3585             if ( t12.getNumberOfExternalNodes() != 6 ) {
3586                 return false;
3587             }
3588             s = w.toNewHampshire( t12, false, true ).toString();
3589             if ( !s.equals( "((A1,A2,A3),B1,(C1,C2));" ) ) {
3590                 return false;
3591             }
3592             t12.deleteSubtree( t12.getNode( "A1" ), true );
3593             if ( t12.getNumberOfExternalNodes() != 5 ) {
3594                 return false;
3595             }
3596             s = w.toNewHampshire( t12, false, true ).toString();
3597             if ( !s.equals( "((A2,A3),B1,(C1,C2));" ) ) {
3598                 return false;
3599             }
3600             t12.deleteSubtree( t12.getNode( "B1" ), true );
3601             if ( t12.getNumberOfExternalNodes() != 4 ) {
3602                 return false;
3603             }
3604             s = w.toNewHampshire( t12, false, true ).toString();
3605             if ( !s.equals( "((A2,A3),(C1,C2));" ) ) {
3606                 return false;
3607             }
3608             t12.deleteSubtree( t12.getNode( "A3" ), true );
3609             if ( t12.getNumberOfExternalNodes() != 3 ) {
3610                 return false;
3611             }
3612             s = w.toNewHampshire( t12, false, true ).toString();
3613             if ( !s.equals( "(A2,(C1,C2));" ) ) {
3614                 return false;
3615             }
3616             t12.deleteSubtree( t12.getNode( "A2" ), true );
3617             if ( t12.getNumberOfExternalNodes() != 2 ) {
3618                 return false;
3619             }
3620             s = w.toNewHampshire( t12, false, true ).toString();
3621             if ( !s.equals( "(C1,C2);" ) ) {
3622                 return false;
3623             }
3624             final Phylogeny t13 = factory.create( "(A,B,C,(D:1.0,E:2.0):3.0)", new NHXParser() )[ 0 ];
3625             t13.deleteSubtree( t13.getNode( "D" ), true );
3626             if ( t13.getNumberOfExternalNodes() != 4 ) {
3627                 return false;
3628             }
3629             s = w.toNewHampshire( t13, false, true ).toString();
3630             if ( !s.equals( "(A,B,C,E:5.0);" ) ) {
3631                 return false;
3632             }
3633             final Phylogeny t14 = factory.create( "((A,B,C,(D:0.1,E:0.4):1.0),F)", new NHXParser() )[ 0 ];
3634             t14.deleteSubtree( t14.getNode( "E" ), true );
3635             if ( t14.getNumberOfExternalNodes() != 5 ) {
3636                 return false;
3637             }
3638             s = w.toNewHampshire( t14, false, true ).toString();
3639             if ( !s.equals( "((A,B,C,D:1.1),F);" ) ) {
3640                 return false;
3641             }
3642             final Phylogeny t15 = factory.create( "((A1,A2,A3,A4),(B1,B2,B3,B4),(C1,C2,C3,C4))", new NHXParser() )[ 0 ];
3643             t15.deleteSubtree( t15.getNode( "B2" ), true );
3644             if ( t15.getNumberOfExternalNodes() != 11 ) {
3645                 return false;
3646             }
3647             t15.deleteSubtree( t15.getNode( "B1" ), true );
3648             if ( t15.getNumberOfExternalNodes() != 10 ) {
3649                 return false;
3650             }
3651             t15.deleteSubtree( t15.getNode( "B3" ), true );
3652             if ( t15.getNumberOfExternalNodes() != 9 ) {
3653                 return false;
3654             }
3655             t15.deleteSubtree( t15.getNode( "B4" ), true );
3656             if ( t15.getNumberOfExternalNodes() != 8 ) {
3657                 return false;
3658             }
3659             t15.deleteSubtree( t15.getNode( "A1" ), true );
3660             if ( t15.getNumberOfExternalNodes() != 7 ) {
3661                 return false;
3662             }
3663             t15.deleteSubtree( t15.getNode( "C4" ), true );
3664             if ( t15.getNumberOfExternalNodes() != 6 ) {
3665                 return false;
3666             }
3667         }
3668         catch ( final Exception e ) {
3669             e.printStackTrace( System.out );
3670             return false;
3671         }
3672         return true;
3673     }
3674
3675     private static boolean testDescriptiveStatistics() {
3676         try {
3677             final DescriptiveStatistics dss1 = new BasicDescriptiveStatistics();
3678             dss1.addValue( 82 );
3679             dss1.addValue( 78 );
3680             dss1.addValue( 70 );
3681             dss1.addValue( 58 );
3682             dss1.addValue( 42 );
3683             if ( dss1.getN() != 5 ) {
3684                 return false;
3685             }
3686             if ( !Test.isEqual( dss1.getMin(), 42 ) ) {
3687                 return false;
3688             }
3689             if ( !Test.isEqual( dss1.getMax(), 82 ) ) {
3690                 return false;
3691             }
3692             if ( !Test.isEqual( dss1.arithmeticMean(), 66 ) ) {
3693                 return false;
3694             }
3695             if ( !Test.isEqual( dss1.sampleStandardDeviation(), 16.24807680927192 ) ) {
3696                 return false;
3697             }
3698             if ( !Test.isEqual( dss1.median(), 70 ) ) {
3699                 return false;
3700             }
3701             if ( !Test.isEqual( dss1.midrange(), 62 ) ) {
3702                 return false;
3703             }
3704             if ( !Test.isEqual( dss1.sampleVariance(), 264 ) ) {
3705                 return false;
3706             }
3707             if ( !Test.isEqual( dss1.pearsonianSkewness(), -0.7385489458759964 ) ) {
3708                 return false;
3709             }
3710             if ( !Test.isEqual( dss1.coefficientOfVariation(), 0.24618298195866547 ) ) {
3711                 return false;
3712             }
3713             if ( !Test.isEqual( dss1.sampleStandardUnit( 66 - 16.24807680927192 ), -1.0 ) ) {
3714                 return false;
3715             }
3716             if ( !Test.isEqual( dss1.getValue( 1 ), 78 ) ) {
3717                 return false;
3718             }
3719             dss1.addValue( 123 );
3720             if ( !Test.isEqual( dss1.arithmeticMean(), 75.5 ) ) {
3721                 return false;
3722             }
3723             if ( !Test.isEqual( dss1.getMax(), 123 ) ) {
3724                 return false;
3725             }
3726             if ( !Test.isEqual( dss1.standardErrorOfMean(), 11.200446419674531 ) ) {
3727                 return false;
3728             }
3729             final DescriptiveStatistics dss2 = new BasicDescriptiveStatistics();
3730             dss2.addValue( -1.85 );
3731             dss2.addValue( 57.5 );
3732             dss2.addValue( 92.78 );
3733             dss2.addValue( 57.78 );
3734             if ( !Test.isEqual( dss2.median(), 57.64 ) ) {
3735                 return false;
3736             }
3737             if ( !Test.isEqual( dss2.sampleStandardDeviation(), 39.266984753946495 ) ) {
3738                 return false;
3739             }
3740             final double[] a = dss2.getDataAsDoubleArray();
3741             if ( !Test.isEqual( a[ 3 ], 57.78 ) ) {
3742                 return false;
3743             }
3744             dss2.addValue( -100 );
3745             if ( !Test.isEqual( dss2.sampleStandardDeviation(), 75.829111296388 ) ) {
3746                 return false;
3747             }
3748             if ( !Test.isEqual( dss2.sampleVariance(), 5750.05412 ) ) {
3749                 return false;
3750             }
3751             final double[] ds = new double[ 14 ];
3752             ds[ 0 ] = 34;
3753             ds[ 1 ] = 23;
3754             ds[ 2 ] = 1;
3755             ds[ 3 ] = 32;
3756             ds[ 4 ] = 11;
3757             ds[ 5 ] = 2;
3758             ds[ 6 ] = 12;
3759             ds[ 7 ] = 33;
3760             ds[ 8 ] = 13;
3761             ds[ 9 ] = 22;
3762             ds[ 10 ] = 21;
3763             ds[ 11 ] = 35;
3764             ds[ 12 ] = 24;
3765             ds[ 13 ] = 31;
3766             final int[] bins = BasicDescriptiveStatistics.performBinning( ds, 0, 40, 4 );
3767             if ( bins.length != 4 ) {
3768                 return false;
3769             }
3770             if ( bins[ 0 ] != 2 ) {
3771                 return false;
3772             }
3773             if ( bins[ 1 ] != 3 ) {
3774                 return false;
3775             }
3776             if ( bins[ 2 ] != 4 ) {
3777                 return false;
3778             }
3779             if ( bins[ 3 ] != 5 ) {
3780                 return false;
3781             }
3782             final double[] ds1 = new double[ 9 ];
3783             ds1[ 0 ] = 10.0;
3784             ds1[ 1 ] = 19.0;
3785             ds1[ 2 ] = 9.999;
3786             ds1[ 3 ] = 0.0;
3787             ds1[ 4 ] = 39.9;
3788             ds1[ 5 ] = 39.999;
3789             ds1[ 6 ] = 30.0;
3790             ds1[ 7 ] = 19.999;
3791             ds1[ 8 ] = 30.1;
3792             final int[] bins1 = BasicDescriptiveStatistics.performBinning( ds1, 0, 40, 4 );
3793             if ( bins1.length != 4 ) {
3794                 return false;
3795             }
3796             if ( bins1[ 0 ] != 2 ) {
3797                 return false;
3798             }
3799             if ( bins1[ 1 ] != 3 ) {
3800                 return false;
3801             }
3802             if ( bins1[ 2 ] != 0 ) {
3803                 return false;
3804             }
3805             if ( bins1[ 3 ] != 4 ) {
3806                 return false;
3807             }
3808             final int[] bins1_1 = BasicDescriptiveStatistics.performBinning( ds1, 0, 40, 3 );
3809             if ( bins1_1.length != 3 ) {
3810                 return false;
3811             }
3812             if ( bins1_1[ 0 ] != 3 ) {
3813                 return false;
3814             }
3815             if ( bins1_1[ 1 ] != 2 ) {
3816                 return false;
3817             }
3818             if ( bins1_1[ 2 ] != 4 ) {
3819                 return false;
3820             }
3821             final int[] bins1_2 = BasicDescriptiveStatistics.performBinning( ds1, 1, 39, 3 );
3822             if ( bins1_2.length != 3 ) {
3823                 return false;
3824             }
3825             if ( bins1_2[ 0 ] != 2 ) {
3826                 return false;
3827             }
3828             if ( bins1_2[ 1 ] != 2 ) {
3829                 return false;
3830             }
3831             if ( bins1_2[ 2 ] != 2 ) {
3832                 return false;
3833             }
3834             final DescriptiveStatistics dss3 = new BasicDescriptiveStatistics();
3835             dss3.addValue( 1 );
3836             dss3.addValue( 1 );
3837             dss3.addValue( 1 );
3838             dss3.addValue( 2 );
3839             dss3.addValue( 3 );
3840             dss3.addValue( 4 );
3841             dss3.addValue( 5 );
3842             dss3.addValue( 5 );
3843             dss3.addValue( 5 );
3844             dss3.addValue( 6 );
3845             dss3.addValue( 7 );
3846             dss3.addValue( 8 );
3847             dss3.addValue( 9 );
3848             dss3.addValue( 10 );
3849             dss3.addValue( 10 );
3850             dss3.addValue( 10 );
3851             final AsciiHistogram histo = new AsciiHistogram( dss3 );
3852             histo.toStringBuffer( 10, '=', 40, 5 );
3853             histo.toStringBuffer( 3, 8, 10, '=', 40, 5, null );
3854         }
3855         catch ( final Exception e ) {
3856             e.printStackTrace( System.out );
3857             return false;
3858         }
3859         return true;
3860     }
3861
3862     private static boolean testDir( final String file ) {
3863         try {
3864             final File f = new File( file );
3865             if ( !f.exists() ) {
3866                 return false;
3867             }
3868             if ( !f.isDirectory() ) {
3869                 return false;
3870             }
3871             if ( !f.canRead() ) {
3872                 return false;
3873             }
3874         }
3875         catch ( final Exception e ) {
3876             return false;
3877         }
3878         return true;
3879     }
3880
3881     private static boolean testEbiEntryRetrieval() {
3882         try {
3883             final SequenceDatabaseEntry entry = SequenceDbWsTools.obtainEntry( "AAK41263" );
3884             if ( !entry.getAccession().equals( "AAK41263" ) ) {
3885                 System.out.println( entry.getAccession() );
3886                 return false;
3887             }
3888             if ( !entry.getTaxonomyScientificName().equals( "Sulfolobus solfataricus P2" ) ) {
3889                 System.out.println( entry.getTaxonomyScientificName() );
3890                 return false;
3891             }
3892             if ( !entry.getSequenceName()
3893                     .equals( "Sulfolobus solfataricus P2 Glycogen debranching enzyme, hypothetical (treX-like)" ) ) {
3894                 System.out.println( entry.getSequenceName() );
3895                 return false;
3896             }
3897             // if ( !entry.getSequenceSymbol().equals( "" ) ) {
3898             //     System.out.println( entry.getSequenceSymbol() );
3899             //     return false;
3900             // }
3901             if ( !entry.getGeneName().equals( "treX-like" ) ) {
3902                 System.out.println( entry.getGeneName() );
3903                 return false;
3904             }
3905             if ( !entry.getTaxonomyIdentifier().equals( "273057" ) ) {
3906                 System.out.println( entry.getTaxonomyIdentifier() );
3907                 return false;
3908             }
3909             if ( !entry.getAnnotations().first().getRefValue().equals( "3.2.1.33" ) ) {
3910                 System.out.println( entry.getAnnotations().first().getRefValue() );
3911                 return false;
3912             }
3913             if ( !entry.getAnnotations().first().getRefSource().equals( "EC" ) ) {
3914                 System.out.println( entry.getAnnotations().first().getRefSource() );
3915                 return false;
3916             }
3917             if ( entry.getCrossReferences().size() != 5 ) {
3918                 return false;
3919             }
3920             //
3921             final SequenceDatabaseEntry entry1 = SequenceDbWsTools.obtainEntry( "ABJ16409" );
3922             if ( !entry1.getAccession().equals( "ABJ16409" ) ) {
3923                 return false;
3924             }
3925             if ( !entry1.getTaxonomyScientificName().equals( "Felis catus" ) ) {
3926                 System.out.println( entry1.getTaxonomyScientificName() );
3927                 return false;
3928             }
3929             if ( !entry1.getSequenceName().equals( "Felis catus (domestic cat) partial BCL2" ) ) {
3930                 System.out.println( entry1.getSequenceName() );
3931                 return false;
3932             }
3933             if ( !entry1.getTaxonomyIdentifier().equals( "9685" ) ) {
3934                 System.out.println( entry1.getTaxonomyIdentifier() );
3935                 return false;
3936             }
3937             if ( !entry1.getGeneName().equals( "BCL2" ) ) {
3938                 System.out.println( entry1.getGeneName() );
3939                 return false;
3940             }
3941             if ( entry1.getCrossReferences().size() != 6 ) {
3942                 return false;
3943             }
3944             //
3945             final SequenceDatabaseEntry entry2 = SequenceDbWsTools.obtainEntry( "NM_184234" );
3946             if ( !entry2.getAccession().equals( "NM_184234" ) ) {
3947                 return false;
3948             }
3949             if ( !entry2.getTaxonomyScientificName().equals( "Homo sapiens" ) ) {
3950                 System.out.println( entry2.getTaxonomyScientificName() );
3951                 return false;
3952             }
3953             if ( !entry2.getSequenceName()
3954                     .equals( "Homo sapiens RNA binding motif protein 39 (RBM39), transcript variant 1, mRNA" ) ) {
3955                 System.out.println( entry2.getSequenceName() );
3956                 return false;
3957             }
3958             if ( !entry2.getTaxonomyIdentifier().equals( "9606" ) ) {
3959                 System.out.println( entry2.getTaxonomyIdentifier() );
3960                 return false;
3961             }
3962             if ( !entry2.getGeneName().equals( "RBM39" ) ) {
3963                 System.out.println( entry2.getGeneName() );
3964                 return false;
3965             }
3966             if ( entry2.getCrossReferences().size() != 3 ) {
3967                 return false;
3968             }
3969             //
3970             final SequenceDatabaseEntry entry3 = SequenceDbWsTools.obtainEntry( "HM043801" );
3971             if ( !entry3.getAccession().equals( "HM043801" ) ) {
3972                 return false;
3973             }
3974             if ( !entry3.getTaxonomyScientificName().equals( "Bursaphelenchus xylophilus" ) ) {
3975                 System.out.println( entry3.getTaxonomyScientificName() );
3976                 return false;
3977             }
3978             if ( !entry3.getSequenceName().equals( "Bursaphelenchus xylophilus RAF gene, complete cds" ) ) {
3979                 System.out.println( entry3.getSequenceName() );
3980                 return false;
3981             }
3982             if ( !entry3.getTaxonomyIdentifier().equals( "6326" ) ) {
3983                 System.out.println( entry3.getTaxonomyIdentifier() );
3984                 return false;
3985             }
3986             if ( !entry3.getSequenceSymbol().equals( "RAF" ) ) {
3987                 System.out.println( entry3.getSequenceSymbol() );
3988                 return false;
3989             }
3990             if ( !ForesterUtil.isEmpty( entry3.getGeneName() ) ) {
3991                 return false;
3992             }
3993             if ( entry3.getCrossReferences().size() != 8 ) {
3994                 return false;
3995             }
3996             //
3997             //
3998             final SequenceDatabaseEntry entry4 = SequenceDbWsTools.obtainEntry( "AAA36557.1" );
3999             if ( !entry4.getAccession().equals( "AAA36557" ) ) {
4000                 return false;
4001             }
4002             if ( !entry4.getTaxonomyScientificName().equals( "Homo sapiens" ) ) {
4003                 System.out.println( entry4.getTaxonomyScientificName() );
4004                 return false;
4005             }
4006             if ( !entry4.getSequenceName().equals( "Homo sapiens (human) ras protein" ) ) {
4007                 System.out.println( entry4.getSequenceName() );
4008                 return false;
4009             }
4010             if ( !entry4.getTaxonomyIdentifier().equals( "9606" ) ) {
4011                 System.out.println( entry4.getTaxonomyIdentifier() );
4012                 return false;
4013             }
4014             if ( !entry4.getGeneName().equals( "ras" ) ) {
4015                 System.out.println( entry4.getGeneName() );
4016                 return false;
4017             }
4018             //   if ( !entry4.getChromosome().equals( "ras" ) ) {
4019             //     System.out.println( entry4.getChromosome() );
4020             //     return false;
4021             // }
4022             // if ( !entry4.getMap().equals( "ras" ) ) {
4023             //     System.out.println( entry4.getMap() );
4024             //     return false;
4025             // }
4026             //TODO FIXME gi...
4027             //
4028             //TODO fails:
4029             //            final SequenceDatabaseEntry entry5 = SequenceDbWsTools.obtainEntry( "M30539" );
4030             //            if ( !entry5.getAccession().equals( "HM043801" ) ) {
4031             //                return false;
4032             //            }
4033             final SequenceDatabaseEntry entry5 = SequenceDbWsTools.obtainEntry( "AAZ45343.1" );
4034             if ( !entry5.getAccession().equals( "AAZ45343" ) ) {
4035                 return false;
4036             }
4037             if ( !entry5.getTaxonomyScientificName().equals( "Dechloromonas aromatica RCB" ) ) {
4038                 System.out.println( entry5.getTaxonomyScientificName() );
4039                 return false;
4040             }
4041             if ( !entry5.getSequenceName().equals( "Dechloromonas aromatica RCB 1,4-alpha-glucan branching enzyme" ) ) {
4042                 System.out.println( entry5.getSequenceName() );
4043                 return false;
4044             }
4045             if ( !entry5.getTaxonomyIdentifier().equals( "159087" ) ) {
4046                 System.out.println( entry5.getTaxonomyIdentifier() );
4047                 return false;
4048             }
4049         }
4050         catch ( final IOException e ) {
4051             System.out.println();
4052             System.out.println( "the following might be due to absence internet connection:" );
4053             e.printStackTrace( System.out );
4054             return true;
4055         }
4056         catch ( final Exception e ) {
4057             e.printStackTrace();
4058             return false;
4059         }
4060         return true;
4061     }
4062
4063     private static boolean testExternalNodeRelatedMethods() {
4064         try {
4065             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
4066             final Phylogeny t1 = factory.create( "((A,B),(C,D))", new NHXParser() )[ 0 ];
4067             PhylogenyNode n = t1.getNode( "A" );
4068             n = n.getNextExternalNode();
4069             if ( !n.getName().equals( "B" ) ) {
4070                 return false;
4071             }
4072             n = n.getNextExternalNode();
4073             if ( !n.getName().equals( "C" ) ) {
4074                 return false;
4075             }
4076             n = n.getNextExternalNode();
4077             if ( !n.getName().equals( "D" ) ) {
4078                 return false;
4079             }
4080             n = t1.getNode( "B" );
4081             while ( !n.isLastExternalNode() ) {
4082                 n = n.getNextExternalNode();
4083             }
4084             final Phylogeny t2 = factory.create( "(((A,B),C),D)", new NHXParser() )[ 0 ];
4085             n = t2.getNode( "A" );
4086             n = n.getNextExternalNode();
4087             if ( !n.getName().equals( "B" ) ) {
4088                 return false;
4089             }
4090             n = n.getNextExternalNode();
4091             if ( !n.getName().equals( "C" ) ) {
4092                 return false;
4093             }
4094             n = n.getNextExternalNode();
4095             if ( !n.getName().equals( "D" ) ) {
4096                 return false;
4097             }
4098             n = t2.getNode( "B" );
4099             while ( !n.isLastExternalNode() ) {
4100                 n = n.getNextExternalNode();
4101             }
4102             final Phylogeny t3 = factory.create( "(((A,B),(C,D)),((E,F),(G,H)))", new NHXParser() )[ 0 ];
4103             n = t3.getNode( "A" );
4104             n = n.getNextExternalNode();
4105             if ( !n.getName().equals( "B" ) ) {
4106                 return false;
4107             }
4108             n = n.getNextExternalNode();
4109             if ( !n.getName().equals( "C" ) ) {
4110                 return false;
4111             }
4112             n = n.getNextExternalNode();
4113             if ( !n.getName().equals( "D" ) ) {
4114                 return false;
4115             }
4116             n = n.getNextExternalNode();
4117             if ( !n.getName().equals( "E" ) ) {
4118                 return false;
4119             }
4120             n = n.getNextExternalNode();
4121             if ( !n.getName().equals( "F" ) ) {
4122                 return false;
4123             }
4124             n = n.getNextExternalNode();
4125             if ( !n.getName().equals( "G" ) ) {
4126                 return false;
4127             }
4128             n = n.getNextExternalNode();
4129             if ( !n.getName().equals( "H" ) ) {
4130                 return false;
4131             }
4132             n = t3.getNode( "B" );
4133             while ( !n.isLastExternalNode() ) {
4134                 n = n.getNextExternalNode();
4135             }
4136             final Phylogeny t4 = factory.create( "((A,B),(C,D))", new NHXParser() )[ 0 ];
4137             for( final PhylogenyNodeIterator iter = t4.iteratorExternalForward(); iter.hasNext(); ) {
4138                 final PhylogenyNode node = iter.next();
4139             }
4140             final Phylogeny t5 = factory.create( "(((A,B),(C,D)),((E,F),(G,H)))", new NHXParser() )[ 0 ];
4141             for( final PhylogenyNodeIterator iter = t5.iteratorExternalForward(); iter.hasNext(); ) {
4142                 final PhylogenyNode node = iter.next();
4143             }
4144             final Phylogeny t6 = factory.create( "((((((A))),(((B))),((C)),((((D)))),E)),((F)))", new NHXParser() )[ 0 ];
4145             final PhylogenyNodeIterator iter = t6.iteratorExternalForward();
4146             if ( !iter.next().getName().equals( "A" ) ) {
4147                 return false;
4148             }
4149             if ( !iter.next().getName().equals( "B" ) ) {
4150                 return false;
4151             }
4152             if ( !iter.next().getName().equals( "C" ) ) {
4153                 return false;
4154             }
4155             if ( !iter.next().getName().equals( "D" ) ) {
4156                 return false;
4157             }
4158             if ( !iter.next().getName().equals( "E" ) ) {
4159                 return false;
4160             }
4161             if ( !iter.next().getName().equals( "F" ) ) {
4162                 return false;
4163             }
4164             if ( iter.hasNext() ) {
4165                 return false;
4166             }
4167         }
4168         catch ( final Exception e ) {
4169             e.printStackTrace( System.out );
4170             return false;
4171         }
4172         return true;
4173     }
4174
4175     private static boolean testExtractSNFromNodeName() {
4176         try {
4177             if ( !ParserUtils.extractScientificNameFromNodeName( "BCDO2_Mus_musculus" ).equals( "Mus musculus" ) ) {
4178                 return false;
4179             }
4180             if ( !ParserUtils.extractScientificNameFromNodeName( "BCDO2_Mus_musculus_musculus" )
4181                     .equals( "Mus musculus musculus" ) ) {
4182                 return false;
4183             }
4184             if ( !ParserUtils.extractScientificNameFromNodeName( "BCDO2_Mus_musculus_musculus-12" )
4185                     .equals( "Mus musculus musculus" ) ) {
4186                 return false;
4187             }
4188             if ( !ParserUtils.extractScientificNameFromNodeName( " -XS12_Mus_musculus-12" ).equals( "Mus musculus" ) ) {
4189                 return false;
4190             }
4191             if ( !ParserUtils.extractScientificNameFromNodeName( " -1234_Mus_musculus-12 affrre e" )
4192                     .equals( "Mus musculus" ) ) {
4193                 return false;
4194             }
4195             if ( !ParserUtils.extractScientificNameFromNodeName( "Mus_musculus" ).equals( "Mus musculus" ) ) {
4196                 return false;
4197             }
4198             if ( !ParserUtils.extractScientificNameFromNodeName( "Mus_musculus_musculus" )
4199                     .equals( "Mus musculus musculus" ) ) {
4200                 return false;
4201             }
4202             if ( !ParserUtils.extractScientificNameFromNodeName( "Mus_musculus_musculus_bcl2" )
4203                     .equals( "Mus musculus musculus" ) ) {
4204                 return false;
4205             }
4206             if ( !ParserUtils.extractScientificNameFromNodeName( "Mus_musculus_123" ).equals( "Mus musculus" ) ) {
4207                 return false;
4208             }
4209             if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia_coli_strain_K12/DH10B" )
4210                     .equals( "Escherichia coli strain K12/DH10B" ) ) {
4211                 return false;
4212             }
4213             if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia_coli_str_K12/DH10B" )
4214                     .equals( "Escherichia coli str K12/DH10B" ) ) {
4215                 return false;
4216             }
4217             if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia coli str. K12/DH10B" )
4218                     .equals( "Escherichia coli str. K12/DH10B" ) ) {
4219                 return false;
4220             }
4221             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis_lyrata_subsp_lyrata" )
4222                     .equals( "Arabidopsis lyrata subsp lyrata" ) ) {
4223                 return false;
4224             }
4225             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis lyrata subsp. lyrata" )
4226                     .equals( "Arabidopsis lyrata subsp. lyrata" ) ) {
4227                 return false;
4228             }
4229             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis lyrata subsp. lyrata 395" )
4230                     .equals( "Arabidopsis lyrata subsp. lyrata" ) ) {
4231                 return false;
4232             }
4233             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis lyrata subsp. lyrata bcl2" )
4234                     .equals( "Arabidopsis lyrata subsp. lyrata" ) ) {
4235                 return false;
4236             }
4237             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis lyrata subsp lyrata bcl2" )
4238                     .equals( "Arabidopsis lyrata subsp lyrata" ) ) {
4239                 return false;
4240             }
4241             if ( !ParserUtils.extractScientificNameFromNodeName( "Arabidopsis lyrata subspecies lyrata bcl2" )
4242                     .equals( "Arabidopsis lyrata subspecies lyrata" ) ) {
4243                 return false;
4244             }
4245             if ( !ParserUtils.extractScientificNameFromNodeName( "Verbascum sinuatum var. adenosepalum bcl2" )
4246                     .equals( "Verbascum sinuatum var. adenosepalum" ) ) {
4247                 return false;
4248             }
4249             if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia coli (strain K12)" )
4250                     .equals( "Escherichia coli (strain K12)" ) ) {
4251                 return false;
4252             }
4253             if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia coli (strain K12) bcl2" )
4254                     .equals( "Escherichia coli (strain K12)" ) ) {
4255                 return false;
4256             }
4257         }
4258         catch ( final Exception e ) {
4259             e.printStackTrace( System.out );
4260             return false;
4261         }
4262         return true;
4263     }
4264
4265     private static boolean testExtractTaxonomyCodeFromNodeName() {
4266         try {
4267             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "MOUSE", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4268                 return false;
4269             }
4270             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4271                     .equals( "SOYBN" ) ) {
4272                 return false;
4273             }
4274             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( " ARATH ", TAXONOMY_EXTRACTION.AGGRESSIVE )
4275                     .equals( "ARATH" ) ) {
4276                 return false;
4277             }
4278             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( " ARATH ", TAXONOMY_EXTRACTION.AGGRESSIVE )
4279                     .equals( "ARATH" ) ) {
4280                 return false;
4281             }
4282             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "RAT", TAXONOMY_EXTRACTION.AGGRESSIVE ).equals( "RAT" ) ) {
4283                 return false;
4284             }
4285             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "RAT", TAXONOMY_EXTRACTION.AGGRESSIVE ).equals( "RAT" ) ) {
4286                 return false;
4287             }
4288             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "RAT1", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4289                 return false;
4290             }
4291             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( " _SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4292                     .equals( "SOYBN" ) ) {
4293                 return false;
4294             }
4295             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4296                     .equals( "SOYBN" ) ) {
4297                 return false;
4298             }
4299             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "qwerty SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4300                     .equals( "SOYBN" ) ) {
4301                 return false;
4302             }
4303             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "qwerty_SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4304                     .equals( "SOYBN" ) ) {
4305                 return false;
4306             }
4307             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "ABCD_SOYBN ", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4308                     .equals( "SOYBN" ) ) {
4309                 return false;
4310             }
4311             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "SOYBN", TAXONOMY_EXTRACTION.AGGRESSIVE )
4312                     .equals( "SOYBN" ) ) {
4313                 return false;
4314             }
4315             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( ",SOYBN,", TAXONOMY_EXTRACTION.AGGRESSIVE )
4316                     .equals( "SOYBN" ) ) {
4317                 return false;
4318             }
4319             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "xxx,SOYBN,xxx", TAXONOMY_EXTRACTION.AGGRESSIVE )
4320                     .equals( "SOYBN" ) ) {
4321                 return false;
4322             }
4323             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "xxxSOYBNxxx", TAXONOMY_EXTRACTION.AGGRESSIVE ) != null ) {
4324                 return false;
4325             }
4326             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "-SOYBN~", TAXONOMY_EXTRACTION.AGGRESSIVE )
4327                     .equals( "SOYBN" ) ) {
4328                 return false;
4329             }
4330             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "NNN8_ECOLI/1-2:0.01",
4331                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT ).equals( "ECOLI" ) ) {
4332                 return false;
4333             }
4334             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "blag_9YX45-blag", TAXONOMY_EXTRACTION.AGGRESSIVE )
4335                     .equals( "9YX45" ) ) {
4336                 return false;
4337             }
4338             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSE function = 23445",
4339                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4340                     .equals( "MOUSE" ) ) {
4341                 return false;
4342             }
4343             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSE+function = 23445",
4344                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4345                     .equals( "MOUSE" ) ) {
4346                 return false;
4347             }
4348             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSE|function = 23445",
4349                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4350                     .equals( "MOUSE" ) ) {
4351                 return false;
4352             }
4353             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSEfunction = 23445",
4354                                                               TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4355                 return false;
4356             }
4357             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSEFunction = 23445",
4358                                                               TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4359                 return false;
4360             }
4361             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RAT function = 23445",
4362                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ).equals( "RAT" ) ) {
4363                 return false;
4364             }
4365             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RAT function = 23445",
4366                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ).equals( "RAT" ) ) {
4367                 return false;
4368             }
4369             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RAT|function = 23445",
4370                                                                TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ).equals( "RAT" ) ) {
4371                 return false;
4372             }
4373             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RATfunction = 23445",
4374                                                               TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4375                 return false;
4376             }
4377             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RATFunction = 23445",
4378                                                               TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4379                 return false;
4380             }
4381             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_RAT/1-3", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4382                     .equals( "RAT" ) ) {
4383                 return false;
4384             }
4385             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_PIG/1-3", TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT )
4386                     .equals( "PIG" ) ) {
4387                 return false;
4388             }
4389             if ( !ParserUtils
4390                     .extractTaxonomyCodeFromNodeName( "BCL2_MOUSE/1-3", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED )
4391                     .equals( "MOUSE" ) ) {
4392                 return false;
4393             }
4394             if ( !ParserUtils.extractTaxonomyCodeFromNodeName( "BCL2_MOUSE/1-3", TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT )
4395                     .equals( "MOUSE" ) ) {
4396                 return false;
4397             }
4398             if ( ParserUtils.extractTaxonomyCodeFromNodeName( "_MOUSE ", TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED ) != null ) {
4399                 return false;
4400             }
4401         }
4402         catch ( final Exception e ) {
4403             e.printStackTrace( System.out );
4404             return false;
4405         }
4406         return true;
4407     }
4408
4409     private static boolean testExtractUniProtKbProteinSeqIdentifier() {
4410         try {
4411             PhylogenyNode n = new PhylogenyNode();
4412             n.setName( "tr|B3RJ64" );
4413             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4414                 return false;
4415             }
4416             n.setName( "tr.B3RJ64" );
4417             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4418                 return false;
4419             }
4420             n.setName( "tr=B3RJ64" );
4421             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4422                 return false;
4423             }
4424             n.setName( "tr-B3RJ64" );
4425             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4426                 return false;
4427             }
4428             n.setName( "tr/B3RJ64" );
4429             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4430                 return false;
4431             }
4432             n.setName( "tr\\B3RJ64" );
4433             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4434                 return false;
4435             }
4436             n.setName( "tr_B3RJ64" );
4437             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4438                 return false;
4439             }
4440             n.setName( " tr|B3RJ64 " );
4441             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4442                 return false;
4443             }
4444             n.setName( "-tr|B3RJ64-" );
4445             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4446                 return false;
4447             }
4448             n.setName( "-tr=B3RJ64-" );
4449             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4450                 return false;
4451             }
4452             n.setName( "_tr=B3RJ64_" );
4453             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4454                 return false;
4455             }
4456             n.setName( " tr_tr|B3RJ64_sp|123 " );
4457             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4458                 return false;
4459             }
4460             n.setName( "B3RJ64" );
4461             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4462                 return false;
4463             }
4464             n.setName( "sp|B3RJ64" );
4465             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4466                 return false;
4467             }
4468             n.setName( "sp|B3RJ64C" );
4469             if ( SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ) != null ) {
4470                 return false;
4471             }
4472             n.setName( "sp B3RJ64" );
4473             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4474                 return false;
4475             }
4476             n.setName( "sp|B3RJ6X" );
4477             if ( SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ) != null ) {
4478                 return false;
4479             }
4480             n.setName( "sp|B3RJ6" );
4481             if ( SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ) != null ) {
4482                 return false;
4483             }
4484             n.setName( "K1PYK7_CRAGI" );
4485             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_CRAGI" ) ) {
4486                 return false;
4487             }
4488             n.setName( "K1PYK7_PEA" );
4489             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_PEA" ) ) {
4490                 return false;
4491             }
4492             n.setName( "K1PYK7_RAT" );
4493             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_RAT" ) ) {
4494                 return false;
4495             }
4496             n.setName( "K1PYK7_PIG" );
4497             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_PIG" ) ) {
4498                 return false;
4499             }
4500             n.setName( "~K1PYK7_PIG~" );
4501             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_PIG" ) ) {
4502                 return false;
4503             }
4504             n.setName( "123456_ECOLI-K1PYK7_CRAGI-sp" );
4505             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_CRAGI" ) ) {
4506                 return false;
4507             }
4508             n.setName( "K1PYKX_CRAGI" );
4509             if ( SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ) != null ) {
4510                 return false;
4511             }
4512             n.setName( "XXXXX_CRAGI" );
4513             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "XXXXX_CRAGI" ) ) {
4514                 return false;
4515             }
4516             n.setName( "tr|H3IB65|H3IB65_STRPU~2-2" );
4517             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "H3IB65" ) ) {
4518                 return false;
4519             }
4520             n.setName( "jgi|Lacbi2|181470|Lacbi1.estExt_GeneWisePlus_human.C_10729~2-3" );
4521             if ( SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ) != null ) {
4522                 return false;
4523             }
4524             n.setName( "sp|Q86U06|RBM23_HUMAN~2-2" );
4525             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "Q86U06" ) ) {
4526                 return false;
4527             }
4528             n = new PhylogenyNode();
4529             org.forester.phylogeny.data.Sequence seq = new org.forester.phylogeny.data.Sequence();
4530             seq.setSymbol( "K1PYK7_CRAGI" );
4531             n.getNodeData().addSequence( seq );
4532             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_CRAGI" ) ) {
4533                 return false;
4534             }
4535             seq.setSymbol( "tr|B3RJ64" );
4536             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4537                 return false;
4538             }
4539             n = new PhylogenyNode();
4540             seq = new org.forester.phylogeny.data.Sequence();
4541             seq.setName( "K1PYK7_CRAGI" );
4542             n.getNodeData().addSequence( seq );
4543             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK7_CRAGI" ) ) {
4544                 return false;
4545             }
4546             seq.setName( "tr|B3RJ64" );
4547             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4548                 return false;
4549             }
4550             n = new PhylogenyNode();
4551             seq = new org.forester.phylogeny.data.Sequence();
4552             seq.setAccession( new Accession( "K1PYK8_CRAGI", "?" ) );
4553             n.getNodeData().addSequence( seq );
4554             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "K1PYK8_CRAGI" ) ) {
4555                 return false;
4556             }
4557             n = new PhylogenyNode();
4558             seq = new org.forester.phylogeny.data.Sequence();
4559             seq.setAccession( new Accession( "tr|B3RJ64", "?" ) );
4560             n.getNodeData().addSequence( seq );
4561             if ( !SequenceAccessionTools.obtainUniProtAccessorFromDataFields( n ).equals( "B3RJ64" ) ) {
4562                 return false;
4563             }
4564             //
4565             n = new PhylogenyNode();
4566             n.setName( "ACP19736" );
4567             if ( !SequenceAccessionTools.obtainGenbankAccessorFromDataFields( n ).equals( "ACP19736" ) ) {
4568                 return false;
4569             }
4570             n = new PhylogenyNode();
4571             n.setName( "|ACP19736|" );
4572             if ( !SequenceAccessionTools.obtainGenbankAccessorFromDataFields( n ).equals( "ACP19736" ) ) {
4573                 return false;
4574             }
4575         }
4576         catch ( final Exception e ) {
4577             e.printStackTrace( System.out );
4578             return false;
4579         }
4580         return true;
4581     }
4582
4583     private static boolean testFastaParser() {
4584         try {
4585             if ( !FastaParser.isLikelyFasta( new FileInputStream( PATH_TO_TEST_DATA + "fasta_0.fasta" ) ) ) {
4586                 return false;
4587             }
4588             if ( FastaParser.isLikelyFasta( new FileInputStream( PATH_TO_TEST_DATA + "msa_3.txt" ) ) ) {
4589                 return false;
4590             }
4591             final Msa msa_0 = FastaParser.parseMsa( new FileInputStream( PATH_TO_TEST_DATA + "fasta_0.fasta" ) );
4592             if ( !msa_0.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "ACGTGKXFMFDMXEXXXSFMFMF" ) ) {
4593                 return false;
4594             }
4595             if ( !msa_0.getIdentifier( 0 ).equals( "one dumb" ) ) {
4596                 return false;
4597             }
4598             if ( !msa_0.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "DKXASDFXSFXFKFKSXDFKSLX" ) ) {
4599                 return false;
4600             }
4601             if ( !msa_0.getSequenceAsString( 2 ).toString().equalsIgnoreCase( "SXDFKSXLFSFPWEXPRXWXERR" ) ) {
4602                 return false;
4603             }
4604             if ( !msa_0.getSequenceAsString( 3 ).toString().equalsIgnoreCase( "AAAAAAAAAAAAAAAAAAAAAAA" ) ) {
4605                 return false;
4606             }
4607             if ( !msa_0.getSequenceAsString( 4 ).toString().equalsIgnoreCase( "DDDDDDDDDDDDDDDDDDDDAXF" ) ) {
4608                 return false;
4609             }
4610         }
4611         catch ( final Exception e ) {
4612             e.printStackTrace();
4613             return false;
4614         }
4615         return true;
4616     }
4617
4618     private static boolean testGenbankAccessorParsing() {
4619         //The format for GenBank Accession numbers are:
4620         //Nucleotide: 1 letter + 5 numerals OR 2 letters + 6 numerals
4621         //Protein:    3 letters + 5 numerals
4622         //http://www.ncbi.nlm.nih.gov/Sequin/acc.html
4623         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "AY423861" ).equals( "AY423861" ) ) {
4624             return false;
4625         }
4626         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( ".AY423861.2" ).equals( "AY423861.2" ) ) {
4627             return false;
4628         }
4629         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "345_.AY423861.24_345" ).equals( "AY423861.24" ) ) {
4630             return false;
4631         }
4632         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "AAY423861" ) != null ) {
4633             return false;
4634         }
4635         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "AY4238612" ) != null ) {
4636             return false;
4637         }
4638         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "AAY4238612" ) != null ) {
4639             return false;
4640         }
4641         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "Y423861" ) != null ) {
4642             return false;
4643         }
4644         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "S12345" ).equals( "S12345" ) ) {
4645             return false;
4646         }
4647         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "|S12345|" ).equals( "S12345" ) ) {
4648             return false;
4649         }
4650         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "|S123456" ) != null ) {
4651             return false;
4652         }
4653         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "ABC123456" ) != null ) {
4654             return false;
4655         }
4656         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "ABC12345" ).equals( "ABC12345" ) ) {
4657             return false;
4658         }
4659         if ( !SequenceAccessionTools.parseGenbankAccessorFromString( "&ABC12345&" ).equals( "ABC12345" ) ) {
4660             return false;
4661         }
4662         if ( SequenceAccessionTools.parseGenbankAccessorFromString( "ABCD12345" ) != null ) {
4663             return false;
4664         }
4665         return true;
4666     }
4667
4668     private static boolean testGeneralMsaParser() {
4669         try {
4670             final String msa_str_0 = "seq1 abcd\n\nseq2 efgh\n";
4671             final Msa msa_0 = GeneralMsaParser.parse( new ByteArrayInputStream( msa_str_0.getBytes() ) );
4672             final String msa_str_1 = "seq1 abc\nseq2 ghi\nseq1 def\nseq2 jkm\n";
4673             final Msa msa_1 = GeneralMsaParser.parse( new ByteArrayInputStream( msa_str_1.getBytes() ) );
4674             final String msa_str_2 = "seq1 abc\nseq2 ghi\n\ndef\njkm\n";
4675             final Msa msa_2 = GeneralMsaParser.parse( new ByteArrayInputStream( msa_str_2.getBytes() ) );
4676             final String msa_str_3 = "seq1 abc\n def\nseq2 ghi\n jkm\n";
4677             final Msa msa_3 = GeneralMsaParser.parse( new ByteArrayInputStream( msa_str_3.getBytes() ) );
4678             if ( !msa_1.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdef" ) ) {
4679                 return false;
4680             }
4681             if ( !msa_1.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "ghixkm" ) ) {
4682                 return false;
4683             }
4684             if ( !msa_1.getIdentifier( 0 ).toString().equals( "seq1" ) ) {
4685                 return false;
4686             }
4687             if ( !msa_1.getIdentifier( 1 ).toString().equals( "seq2" ) ) {
4688                 return false;
4689             }
4690             if ( !msa_2.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdef" ) ) {
4691                 return false;
4692             }
4693             if ( !msa_2.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "ghixkm" ) ) {
4694                 return false;
4695             }
4696             if ( !msa_2.getIdentifier( 0 ).toString().equals( "seq1" ) ) {
4697                 return false;
4698             }
4699             if ( !msa_2.getIdentifier( 1 ).toString().equals( "seq2" ) ) {
4700                 return false;
4701             }
4702             if ( !msa_3.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdef" ) ) {
4703                 return false;
4704             }
4705             if ( !msa_3.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "ghixkm" ) ) {
4706                 return false;
4707             }
4708             if ( !msa_3.getIdentifier( 0 ).toString().equals( "seq1" ) ) {
4709                 return false;
4710             }
4711             if ( !msa_3.getIdentifier( 1 ).toString().equals( "seq2" ) ) {
4712                 return false;
4713             }
4714             final Msa msa_4 = GeneralMsaParser.parse( new FileInputStream( PATH_TO_TEST_DATA + "msa_1.txt" ) );
4715             if ( !msa_4.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdefeeeeeeeexx" ) ) {
4716                 return false;
4717             }
4718             if ( !msa_4.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "efghixffffffffyy" ) ) {
4719                 return false;
4720             }
4721             if ( !msa_4.getSequenceAsString( 2 ).toString().equalsIgnoreCase( "klmnxphhhhhhhhzz" ) ) {
4722                 return false;
4723             }
4724             final Msa msa_5 = GeneralMsaParser.parse( new FileInputStream( PATH_TO_TEST_DATA + "msa_2.txt" ) );
4725             if ( !msa_5.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdefxx" ) ) {
4726                 return false;
4727             }
4728             if ( !msa_5.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "efghixyy" ) ) {
4729                 return false;
4730             }
4731             if ( !msa_5.getSequenceAsString( 2 ).toString().equalsIgnoreCase( "klmnxpzz" ) ) {
4732                 return false;
4733             }
4734             final Msa msa_6 = GeneralMsaParser.parse( new FileInputStream( PATH_TO_TEST_DATA + "msa_3.txt" ) );
4735             if ( !msa_6.getSequenceAsString( 0 ).toString().equalsIgnoreCase( "abcdefeeeeeeeexx" ) ) {
4736                 return false;
4737             }
4738             if ( !msa_6.getSequenceAsString( 1 ).toString().equalsIgnoreCase( "efghixffffffffyy" ) ) {
4739                 return false;
4740             }
4741             if ( !msa_6.getSequenceAsString( 2 ).toString().equalsIgnoreCase( "klmnxphhhhhhhhzz" ) ) {
4742                 return false;
4743             }
4744         }
4745         catch ( final Exception e ) {
4746             e.printStackTrace();
4747             return false;
4748         }
4749         return true;
4750     }
4751
4752     private static boolean testGeneralTable() {
4753         try {
4754             final GeneralTable<Integer, String> t0 = new GeneralTable<Integer, String>();
4755             t0.setValue( 3, 2, "23" );
4756             t0.setValue( 10, 1, "error" );
4757             t0.setValue( 10, 1, "110" );
4758             t0.setValue( 9, 1, "19" );
4759             t0.setValue( 1, 10, "101" );
4760             t0.setValue( 10, 10, "1010" );
4761             t0.setValue( 100, 10, "10100" );
4762             t0.setValue( 0, 0, "00" );
4763             if ( !t0.getValue( 3, 2 ).equals( "23" ) ) {
4764                 return false;
4765             }
4766             if ( !t0.getValue( 10, 1 ).equals( "110" ) ) {
4767                 return false;
4768             }
4769             if ( !t0.getValueAsString( 1, 10 ).equals( "101" ) ) {
4770                 return false;
4771             }
4772             if ( !t0.getValueAsString( 10, 10 ).equals( "1010" ) ) {
4773                 return false;
4774             }
4775             if ( !t0.getValueAsString( 100, 10 ).equals( "10100" ) ) {
4776                 return false;
4777             }
4778             if ( !t0.getValueAsString( 9, 1 ).equals( "19" ) ) {
4779                 return false;
4780             }
4781             if ( !t0.getValueAsString( 0, 0 ).equals( "00" ) ) {
4782                 return false;
4783             }
4784             if ( !t0.getValueAsString( 49, 4 ).equals( "" ) ) {
4785                 return false;
4786             }
4787             if ( !t0.getValueAsString( 22349, 3434344 ).equals( "" ) ) {
4788                 return false;
4789             }
4790             final GeneralTable<String, String> t1 = new GeneralTable<String, String>();
4791             t1.setValue( "3", "2", "23" );
4792             t1.setValue( "10", "1", "error" );
4793             t1.setValue( "10", "1", "110" );
4794             t1.setValue( "9", "1", "19" );
4795             t1.setValue( "1", "10", "101" );
4796             t1.setValue( "10", "10", "1010" );
4797             t1.setValue( "100", "10", "10100" );
4798             t1.setValue( "0", "0", "00" );
4799             t1.setValue( "qwerty", "zxcvbnm", "asdef" );
4800             if ( !t1.getValue( "3", "2" ).equals( "23" ) ) {
4801                 return false;
4802             }
4803             if ( !t1.getValue( "10", "1" ).equals( "110" ) ) {
4804                 return false;
4805             }
4806             if ( !t1.getValueAsString( "1", "10" ).equals( "101" ) ) {
4807                 return false;
4808             }
4809             if ( !t1.getValueAsString( "10", "10" ).equals( "1010" ) ) {
4810                 return false;
4811             }
4812             if ( !t1.getValueAsString( "100", "10" ).equals( "10100" ) ) {
4813                 return false;
4814             }
4815             if ( !t1.getValueAsString( "9", "1" ).equals( "19" ) ) {
4816                 return false;
4817             }
4818             if ( !t1.getValueAsString( "0", "0" ).equals( "00" ) ) {
4819                 return false;
4820             }
4821             if ( !t1.getValueAsString( "qwerty", "zxcvbnm" ).equals( "asdef" ) ) {
4822                 return false;
4823             }
4824             if ( !t1.getValueAsString( "49", "4" ).equals( "" ) ) {
4825                 return false;
4826             }
4827             if ( !t1.getValueAsString( "22349", "3434344" ).equals( "" ) ) {
4828                 return false;
4829             }
4830         }
4831         catch ( final Exception e ) {
4832             e.printStackTrace( System.out );
4833             return false;
4834         }
4835         return true;
4836     }
4837
4838     private static boolean testGetDistance() {
4839         try {
4840             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
4841             final Phylogeny p1 = factory.create( "(((A:1,B:2,X:100)ab:3,C:4)abc:5,(D:7,(E:9,F:10)ef:8)def:6)r",
4842                                                  new NHXParser() )[ 0 ];
4843             if ( PhylogenyMethods.calculateDistance( p1.getNode( "C" ), p1.getNode( "C" ) ) != 0 ) {
4844                 return false;
4845             }
4846             if ( PhylogenyMethods.calculateDistance( p1.getNode( "def" ), p1.getNode( "def" ) ) != 0 ) {
4847                 return false;
4848             }
4849             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "ef" ) ) != 0 ) {
4850                 return false;
4851             }
4852             if ( PhylogenyMethods.calculateDistance( p1.getNode( "r" ), p1.getNode( "r" ) ) != 0 ) {
4853                 return false;
4854             }
4855             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "A" ) ) != 0 ) {
4856                 return false;
4857             }
4858             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "B" ) ) != 3 ) {
4859                 return false;
4860             }
4861             if ( PhylogenyMethods.calculateDistance( p1.getNode( "B" ), p1.getNode( "A" ) ) != 3 ) {
4862                 return false;
4863             }
4864             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "C" ) ) != 8 ) {
4865                 return false;
4866             }
4867             if ( PhylogenyMethods.calculateDistance( p1.getNode( "C" ), p1.getNode( "A" ) ) != 8 ) {
4868                 return false;
4869             }
4870             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "D" ) ) != 22 ) {
4871                 return false;
4872             }
4873             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "E" ) ) != 32 ) {
4874                 return false;
4875             }
4876             if ( PhylogenyMethods.calculateDistance( p1.getNode( "E" ), p1.getNode( "A" ) ) != 32 ) {
4877                 return false;
4878             }
4879             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "F" ) ) != 33 ) {
4880                 return false;
4881             }
4882             if ( PhylogenyMethods.calculateDistance( p1.getNode( "F" ), p1.getNode( "A" ) ) != 33 ) {
4883                 return false;
4884             }
4885             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "ab" ) ) != 1 ) {
4886                 return false;
4887             }
4888             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ab" ), p1.getNode( "A" ) ) != 1 ) {
4889                 return false;
4890             }
4891             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "abc" ) ) != 4 ) {
4892                 return false;
4893             }
4894             if ( PhylogenyMethods.calculateDistance( p1.getNode( "abc" ), p1.getNode( "A" ) ) != 4 ) {
4895                 return false;
4896             }
4897             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "r" ) ) != 9 ) {
4898                 return false;
4899             }
4900             if ( PhylogenyMethods.calculateDistance( p1.getNode( "r" ), p1.getNode( "A" ) ) != 9 ) {
4901                 return false;
4902             }
4903             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "def" ) ) != 15 ) {
4904                 return false;
4905             }
4906             if ( PhylogenyMethods.calculateDistance( p1.getNode( "def" ), p1.getNode( "A" ) ) != 15 ) {
4907                 return false;
4908             }
4909             if ( PhylogenyMethods.calculateDistance( p1.getNode( "A" ), p1.getNode( "ef" ) ) != 23 ) {
4910                 return false;
4911             }
4912             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "A" ) ) != 23 ) {
4913                 return false;
4914             }
4915             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "def" ) ) != 8 ) {
4916                 return false;
4917             }
4918             if ( PhylogenyMethods.calculateDistance( p1.getNode( "def" ), p1.getNode( "ef" ) ) != 8 ) {
4919                 return false;
4920             }
4921             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "r" ) ) != 14 ) {
4922                 return false;
4923             }
4924             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "abc" ) ) != 19 ) {
4925                 return false;
4926             }
4927             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ef" ), p1.getNode( "ab" ) ) != 22 ) {
4928                 return false;
4929             }
4930             if ( PhylogenyMethods.calculateDistance( p1.getNode( "ab" ), p1.getNode( "ef" ) ) != 22 ) {
4931                 return false;
4932             }
4933             if ( PhylogenyMethods.calculateDistance( p1.getNode( "def" ), p1.getNode( "abc" ) ) != 11 ) {
4934                 return false;
4935             }
4936             final Phylogeny p2 = factory.create( "((A:4,B:5,C:6)abc:1,(D:7,E:8,F:9)def:2,(G:10,H:11,I:12)ghi:3)r",
4937                                                  new NHXParser() )[ 0 ];
4938             if ( PhylogenyMethods.calculateDistance( p2.getNode( "A" ), p2.getNode( "B" ) ) != 9 ) {
4939                 return false;
4940             }
4941             if ( PhylogenyMethods.calculateDistance( p2.getNode( "A" ), p2.getNode( "C" ) ) != 10 ) {
4942                 return false;
4943             }
4944             if ( PhylogenyMethods.calculateDistance( p2.getNode( "A" ), p2.getNode( "D" ) ) != 14 ) {
4945                 return false;
4946             }
4947             if ( PhylogenyMethods.calculateDistance( p2.getNode( "A" ), p2.getNode( "ghi" ) ) != 8 ) {
4948                 return false;
4949             }
4950             if ( PhylogenyMethods.calculateDistance( p2.getNode( "A" ), p2.getNode( "I" ) ) != 20 ) {
4951                 return false;
4952             }
4953             if ( PhylogenyMethods.calculateDistance( p2.getNode( "G" ), p2.getNode( "ghi" ) ) != 10 ) {
4954                 return false;
4955             }
4956             if ( PhylogenyMethods.calculateDistance( p2.getNode( "r" ), p2.getNode( "r" ) ) != 0 ) {
4957                 return false;
4958             }
4959             if ( PhylogenyMethods.calculateDistance( p2.getNode( "r" ), p2.getNode( "G" ) ) != 13 ) {
4960                 return false;
4961             }
4962             if ( PhylogenyMethods.calculateDistance( p2.getNode( "G" ), p2.getNode( "r" ) ) != 13 ) {
4963                 return false;
4964             }
4965             if ( PhylogenyMethods.calculateDistance( p2.getNode( "G" ), p2.getNode( "H" ) ) != 21 ) {
4966                 return false;
4967             }
4968             if ( PhylogenyMethods.calculateDistance( p2.getNode( "G" ), p2.getNode( "I" ) ) != 22 ) {
4969                 return false;
4970             }
4971         }
4972         catch ( final Exception e ) {
4973             e.printStackTrace( System.out );
4974             return false;
4975         }
4976         return true;
4977     }
4978
4979     private static boolean testGetLCA() {
4980         try {
4981             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
4982             final Phylogeny p1 = factory.create( "((((((A,B)ab,C)abc,D)abcd,E)abcde,F)abcdef,(G,H)gh)abcdefgh",
4983                                                  new NHXParser() )[ 0 ];
4984             final PhylogenyNode A = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "A" ) );
4985             if ( !A.getName().equals( "A" ) ) {
4986                 return false;
4987             }
4988             final PhylogenyNode gh = PhylogenyMethods.calculateLCA( p1.getNode( "gh" ), p1.getNode( "gh" ) );
4989             if ( !gh.getName().equals( "gh" ) ) {
4990                 return false;
4991             }
4992             final PhylogenyNode ab = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "B" ) );
4993             if ( !ab.getName().equals( "ab" ) ) {
4994                 return false;
4995             }
4996             final PhylogenyNode ab2 = PhylogenyMethods.calculateLCA( p1.getNode( "B" ), p1.getNode( "A" ) );
4997             if ( !ab2.getName().equals( "ab" ) ) {
4998                 return false;
4999             }
5000             final PhylogenyNode gh2 = PhylogenyMethods.calculateLCA( p1.getNode( "H" ), p1.getNode( "G" ) );
5001             if ( !gh2.getName().equals( "gh" ) ) {
5002                 return false;
5003             }
5004             final PhylogenyNode gh3 = PhylogenyMethods.calculateLCA( p1.getNode( "G" ), p1.getNode( "H" ) );
5005             if ( !gh3.getName().equals( "gh" ) ) {
5006                 return false;
5007             }
5008             final PhylogenyNode abc = PhylogenyMethods.calculateLCA( p1.getNode( "C" ), p1.getNode( "A" ) );
5009             if ( !abc.getName().equals( "abc" ) ) {
5010                 return false;
5011             }
5012             final PhylogenyNode abc2 = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "C" ) );
5013             if ( !abc2.getName().equals( "abc" ) ) {
5014                 return false;
5015             }
5016             final PhylogenyNode abcd = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "D" ) );
5017             if ( !abcd.getName().equals( "abcd" ) ) {
5018                 return false;
5019             }
5020             final PhylogenyNode abcd2 = PhylogenyMethods.calculateLCA( p1.getNode( "D" ), p1.getNode( "A" ) );
5021             if ( !abcd2.getName().equals( "abcd" ) ) {
5022                 return false;
5023             }
5024             final PhylogenyNode abcdef = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "F" ) );
5025             if ( !abcdef.getName().equals( "abcdef" ) ) {
5026                 return false;
5027             }
5028             final PhylogenyNode abcdef2 = PhylogenyMethods.calculateLCA( p1.getNode( "F" ), p1.getNode( "A" ) );
5029             if ( !abcdef2.getName().equals( "abcdef" ) ) {
5030                 return false;
5031             }
5032             final PhylogenyNode abcdef3 = PhylogenyMethods.calculateLCA( p1.getNode( "ab" ), p1.getNode( "F" ) );
5033             if ( !abcdef3.getName().equals( "abcdef" ) ) {
5034                 return false;
5035             }
5036             final PhylogenyNode abcdef4 = PhylogenyMethods.calculateLCA( p1.getNode( "F" ), p1.getNode( "ab" ) );
5037             if ( !abcdef4.getName().equals( "abcdef" ) ) {
5038                 return false;
5039             }
5040             final PhylogenyNode abcde = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "E" ) );
5041             if ( !abcde.getName().equals( "abcde" ) ) {
5042                 return false;
5043             }
5044             final PhylogenyNode abcde2 = PhylogenyMethods.calculateLCA( p1.getNode( "E" ), p1.getNode( "A" ) );
5045             if ( !abcde2.getName().equals( "abcde" ) ) {
5046                 return false;
5047             }
5048             final PhylogenyNode r = PhylogenyMethods.calculateLCA( p1.getNode( "abcdefgh" ), p1.getNode( "abcdefgh" ) );
5049             if ( !r.getName().equals( "abcdefgh" ) ) {
5050                 return false;
5051             }
5052             final PhylogenyNode r2 = PhylogenyMethods.calculateLCA( p1.getNode( "A" ), p1.getNode( "H" ) );
5053             if ( !r2.getName().equals( "abcdefgh" ) ) {
5054                 return false;
5055             }
5056             final PhylogenyNode r3 = PhylogenyMethods.calculateLCA( p1.getNode( "H" ), p1.getNode( "A" ) );
5057             if ( !r3.getName().equals( "abcdefgh" ) ) {
5058                 return false;
5059             }
5060             final PhylogenyNode abcde3 = PhylogenyMethods.calculateLCA( p1.getNode( "E" ), p1.getNode( "abcde" ) );
5061             if ( !abcde3.getName().equals( "abcde" ) ) {
5062                 return false;
5063             }
5064             final PhylogenyNode abcde4 = PhylogenyMethods.calculateLCA( p1.getNode( "abcde" ), p1.getNode( "E" ) );
5065             if ( !abcde4.getName().equals( "abcde" ) ) {
5066                 return false;
5067             }
5068             final PhylogenyNode ab3 = PhylogenyMethods.calculateLCA( p1.getNode( "ab" ), p1.getNode( "B" ) );
5069             if ( !ab3.getName().equals( "ab" ) ) {
5070                 return false;
5071             }
5072             final PhylogenyNode ab4 = PhylogenyMethods.calculateLCA( p1.getNode( "B" ), p1.getNode( "ab" ) );
5073             if ( !ab4.getName().equals( "ab" ) ) {
5074                 return false;
5075             }
5076             final Phylogeny p2 = factory.create( "(a,b,(((c,d)cd,e)cde,f)cdef)r", new NHXParser() )[ 0 ];
5077             final PhylogenyNode cd = PhylogenyMethods.calculateLCA( p2.getNode( "c" ), p2.getNode( "d" ) );
5078             if ( !cd.getName().equals( "cd" ) ) {
5079                 return false;
5080             }
5081             final PhylogenyNode cd2 = PhylogenyMethods.calculateLCA( p2.getNode( "d" ), p2.getNode( "c" ) );
5082             if ( !cd2.getName().equals( "cd" ) ) {
5083                 return false;
5084             }
5085             final PhylogenyNode cde = PhylogenyMethods.calculateLCA( p2.getNode( "c" ), p2.getNode( "e" ) );
5086             if ( !cde.getName().equals( "cde" ) ) {
5087                 return false;
5088             }
5089             final PhylogenyNode cde2 = PhylogenyMethods.calculateLCA( p2.getNode( "e" ), p2.getNode( "c" ) );
5090             if ( !cde2.getName().equals( "cde" ) ) {
5091                 return false;
5092             }
5093             final PhylogenyNode cdef = PhylogenyMethods.calculateLCA( p2.getNode( "c" ), p2.getNode( "f" ) );
5094             if ( !cdef.getName().equals( "cdef" ) ) {
5095                 return false;
5096             }
5097             final PhylogenyNode cdef2 = PhylogenyMethods.calculateLCA( p2.getNode( "d" ), p2.getNode( "f" ) );
5098             if ( !cdef2.getName().equals( "cdef" ) ) {
5099                 return false;
5100             }
5101             final PhylogenyNode cdef3 = PhylogenyMethods.calculateLCA( p2.getNode( "f" ), p2.getNode( "d" ) );
5102             if ( !cdef3.getName().equals( "cdef" ) ) {
5103                 return false;
5104             }
5105             final PhylogenyNode rt = PhylogenyMethods.calculateLCA( p2.getNode( "c" ), p2.getNode( "a" ) );
5106             if ( !rt.getName().equals( "r" ) ) {
5107                 return false;
5108             }
5109             final Phylogeny p3 = factory
5110                     .create( "((((a,(b,c)bc)abc,(d,e)de)abcde,f)abcdef,(((g,h)gh,(i,j)ij)ghij,k)ghijk,l)",
5111                              new NHXParser() )[ 0 ];
5112             final PhylogenyNode bc_3 = PhylogenyMethods.calculateLCA( p3.getNode( "b" ), p3.getNode( "c" ) );
5113             if ( !bc_3.getName().equals( "bc" ) ) {
5114                 return false;
5115             }
5116             final PhylogenyNode ac_3 = PhylogenyMethods.calculateLCA( p3.getNode( "a" ), p3.getNode( "c" ) );
5117             if ( !ac_3.getName().equals( "abc" ) ) {
5118                 return false;
5119             }
5120             final PhylogenyNode ad_3 = PhylogenyMethods.calculateLCA( p3.getNode( "a" ), p3.getNode( "d" ) );
5121             if ( !ad_3.getName().equals( "abcde" ) ) {
5122                 return false;
5123             }
5124             final PhylogenyNode af_3 = PhylogenyMethods.calculateLCA( p3.getNode( "a" ), p3.getNode( "f" ) );
5125             if ( !af_3.getName().equals( "abcdef" ) ) {
5126                 return false;
5127             }
5128             final PhylogenyNode ag_3 = PhylogenyMethods.calculateLCA( p3.getNode( "a" ), p3.getNode( "g" ) );
5129             if ( !ag_3.getName().equals( "" ) ) {
5130                 return false;
5131             }
5132             if ( !ag_3.isRoot() ) {
5133                 return false;
5134             }
5135             final PhylogenyNode al_3 = PhylogenyMethods.calculateLCA( p3.getNode( "a" ), p3.getNode( "l" ) );
5136             if ( !al_3.getName().equals( "" ) ) {
5137                 return false;
5138             }
5139             if ( !al_3.isRoot() ) {
5140                 return false;
5141             }
5142             final PhylogenyNode kl_3 = PhylogenyMethods.calculateLCA( p3.getNode( "k" ), p3.getNode( "l" ) );
5143             if ( !kl_3.getName().equals( "" ) ) {
5144                 return false;
5145             }
5146             if ( !kl_3.isRoot() ) {
5147                 return false;
5148             }
5149             final PhylogenyNode fl_3 = PhylogenyMethods.calculateLCA( p3.getNode( "f" ), p3.getNode( "l" ) );
5150             if ( !fl_3.getName().equals( "" ) ) {
5151                 return false;
5152             }
5153             if ( !fl_3.isRoot() ) {
5154                 return false;
5155             }
5156             final PhylogenyNode gk_3 = PhylogenyMethods.calculateLCA( p3.getNode( "g" ), p3.getNode( "k" ) );
5157             if ( !gk_3.getName().equals( "ghijk" ) ) {
5158                 return false;
5159             }
5160             final Phylogeny p4 = factory.create( "(a,b,c)r", new NHXParser() )[ 0 ];
5161             final PhylogenyNode r_4 = PhylogenyMethods.calculateLCA( p4.getNode( "b" ), p4.getNode( "c" ) );
5162             if ( !r_4.getName().equals( "r" ) ) {
5163                 return false;
5164             }
5165             final Phylogeny p5 = factory.create( "((a,b),c,d)root", new NHXParser() )[ 0 ];
5166             final PhylogenyNode r_5 = PhylogenyMethods.calculateLCA( p5.getNode( "a" ), p5.getNode( "c" ) );
5167             if ( !r_5.getName().equals( "root" ) ) {
5168                 return false;
5169             }
5170             final Phylogeny p6 = factory.create( "((a,b),c,d)rot", new NHXParser() )[ 0 ];
5171             final PhylogenyNode r_6 = PhylogenyMethods.calculateLCA( p6.getNode( "c" ), p6.getNode( "a" ) );
5172             if ( !r_6.getName().equals( "rot" ) ) {
5173                 return false;
5174             }
5175             final Phylogeny p7 = factory.create( "(((a,b)x,c)x,d,e)rott", new NHXParser() )[ 0 ];
5176             final PhylogenyNode r_7 = PhylogenyMethods.calculateLCA( p7.getNode( "a" ), p7.getNode( "e" ) );
5177             if ( !r_7.getName().equals( "rott" ) ) {
5178                 return false;
5179             }
5180         }
5181         catch ( final Exception e ) {
5182             e.printStackTrace( System.out );
5183             return false;
5184         }
5185         return true;
5186     }
5187
5188     private static boolean testGetLCA2() {
5189         try {
5190             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
5191             // final Phylogeny p_a = factory.create( "(a)", new NHXParser() )[ 0 ];
5192             final Phylogeny p_a = NHXParser.parse( "(a)" )[ 0 ];
5193             PhylogenyMethods.preOrderReId( p_a );
5194             final PhylogenyNode p_a_1 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_a.getNode( "a" ),
5195                                                                                               p_a.getNode( "a" ) );
5196             if ( !p_a_1.getName().equals( "a" ) ) {
5197                 return false;
5198             }
5199             final Phylogeny p_b = NHXParser.parse( "((a)b)" )[ 0 ];
5200             PhylogenyMethods.preOrderReId( p_b );
5201             final PhylogenyNode p_b_1 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_b.getNode( "b" ),
5202                                                                                               p_b.getNode( "a" ) );
5203             if ( !p_b_1.getName().equals( "b" ) ) {
5204                 return false;
5205             }
5206             final PhylogenyNode p_b_2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_b.getNode( "a" ),
5207                                                                                               p_b.getNode( "b" ) );
5208             if ( !p_b_2.getName().equals( "b" ) ) {
5209                 return false;
5210             }
5211             final Phylogeny p_c = factory.create( "(((a)b)c)", new NHXParser() )[ 0 ];
5212             PhylogenyMethods.preOrderReId( p_c );
5213             final PhylogenyNode p_c_1 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_c.getNode( "b" ),
5214                                                                                               p_c.getNode( "a" ) );
5215             if ( !p_c_1.getName().equals( "b" ) ) {
5216                 return false;
5217             }
5218             final PhylogenyNode p_c_2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_c.getNode( "a" ),
5219                                                                                               p_c.getNode( "c" ) );
5220             if ( !p_c_2.getName().equals( "c" ) ) {
5221                 System.out.println( p_c_2.getName() );
5222                 System.exit( -1 );
5223                 return false;
5224             }
5225             final PhylogenyNode p_c_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_c.getNode( "a" ),
5226                                                                                               p_c.getNode( "b" ) );
5227             if ( !p_c_3.getName().equals( "b" ) ) {
5228                 return false;
5229             }
5230             final PhylogenyNode p_c_4 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p_c.getNode( "c" ),
5231                                                                                               p_c.getNode( "a" ) );
5232             if ( !p_c_4.getName().equals( "c" ) ) {
5233                 return false;
5234             }
5235             final Phylogeny p1 = factory.create( "((((((A,B)ab,C)abc,D)abcd,E)abcde,F)abcdef,(G,H)gh)abcdefgh",
5236                                                  new NHXParser() )[ 0 ];
5237             PhylogenyMethods.preOrderReId( p1 );
5238             final PhylogenyNode A = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5239                                                                                           p1.getNode( "A" ) );
5240             if ( !A.getName().equals( "A" ) ) {
5241                 return false;
5242             }
5243             final PhylogenyNode gh = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "gh" ),
5244                                                                                            p1.getNode( "gh" ) );
5245             if ( !gh.getName().equals( "gh" ) ) {
5246                 return false;
5247             }
5248             final PhylogenyNode ab = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5249                                                                                            p1.getNode( "B" ) );
5250             if ( !ab.getName().equals( "ab" ) ) {
5251                 return false;
5252             }
5253             final PhylogenyNode ab2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "B" ),
5254                                                                                             p1.getNode( "A" ) );
5255             if ( !ab2.getName().equals( "ab" ) ) {
5256                 return false;
5257             }
5258             final PhylogenyNode gh2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "H" ),
5259                                                                                             p1.getNode( "G" ) );
5260             if ( !gh2.getName().equals( "gh" ) ) {
5261                 return false;
5262             }
5263             final PhylogenyNode gh3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "G" ),
5264                                                                                             p1.getNode( "H" ) );
5265             if ( !gh3.getName().equals( "gh" ) ) {
5266                 return false;
5267             }
5268             final PhylogenyNode abc = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "C" ),
5269                                                                                             p1.getNode( "A" ) );
5270             if ( !abc.getName().equals( "abc" ) ) {
5271                 return false;
5272             }
5273             final PhylogenyNode abc2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5274                                                                                              p1.getNode( "C" ) );
5275             if ( !abc2.getName().equals( "abc" ) ) {
5276                 return false;
5277             }
5278             final PhylogenyNode abcd = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5279                                                                                              p1.getNode( "D" ) );
5280             if ( !abcd.getName().equals( "abcd" ) ) {
5281                 return false;
5282             }
5283             final PhylogenyNode abcd2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "D" ),
5284                                                                                               p1.getNode( "A" ) );
5285             if ( !abcd2.getName().equals( "abcd" ) ) {
5286                 return false;
5287             }
5288             final PhylogenyNode abcdef = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5289                                                                                                p1.getNode( "F" ) );
5290             if ( !abcdef.getName().equals( "abcdef" ) ) {
5291                 return false;
5292             }
5293             final PhylogenyNode abcdef2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "F" ),
5294                                                                                                 p1.getNode( "A" ) );
5295             if ( !abcdef2.getName().equals( "abcdef" ) ) {
5296                 return false;
5297             }
5298             final PhylogenyNode abcdef3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "ab" ),
5299                                                                                                 p1.getNode( "F" ) );
5300             if ( !abcdef3.getName().equals( "abcdef" ) ) {
5301                 return false;
5302             }
5303             final PhylogenyNode abcdef4 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "F" ),
5304                                                                                                 p1.getNode( "ab" ) );
5305             if ( !abcdef4.getName().equals( "abcdef" ) ) {
5306                 return false;
5307             }
5308             final PhylogenyNode abcde = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5309                                                                                               p1.getNode( "E" ) );
5310             if ( !abcde.getName().equals( "abcde" ) ) {
5311                 return false;
5312             }
5313             final PhylogenyNode abcde2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "E" ),
5314                                                                                                p1.getNode( "A" ) );
5315             if ( !abcde2.getName().equals( "abcde" ) ) {
5316                 return false;
5317             }
5318             final PhylogenyNode r = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "abcdefgh" ),
5319                                                                                           p1.getNode( "abcdefgh" ) );
5320             if ( !r.getName().equals( "abcdefgh" ) ) {
5321                 return false;
5322             }
5323             final PhylogenyNode r2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "A" ),
5324                                                                                            p1.getNode( "H" ) );
5325             if ( !r2.getName().equals( "abcdefgh" ) ) {
5326                 return false;
5327             }
5328             final PhylogenyNode r3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "H" ),
5329                                                                                            p1.getNode( "A" ) );
5330             if ( !r3.getName().equals( "abcdefgh" ) ) {
5331                 return false;
5332             }
5333             final PhylogenyNode abcde3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "E" ),
5334                                                                                                p1.getNode( "abcde" ) );
5335             if ( !abcde3.getName().equals( "abcde" ) ) {
5336                 return false;
5337             }
5338             final PhylogenyNode abcde4 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "abcde" ),
5339                                                                                                p1.getNode( "E" ) );
5340             if ( !abcde4.getName().equals( "abcde" ) ) {
5341                 return false;
5342             }
5343             final PhylogenyNode ab3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "ab" ),
5344                                                                                             p1.getNode( "B" ) );
5345             if ( !ab3.getName().equals( "ab" ) ) {
5346                 return false;
5347             }
5348             final PhylogenyNode ab4 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p1.getNode( "B" ),
5349                                                                                             p1.getNode( "ab" ) );
5350             if ( !ab4.getName().equals( "ab" ) ) {
5351                 return false;
5352             }
5353             final Phylogeny p2 = factory.create( "(a,b,(((c,d)cd,e)cde,f)cdef)r", new NHXParser() )[ 0 ];
5354             PhylogenyMethods.preOrderReId( p2 );
5355             final PhylogenyNode cd = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "c" ),
5356                                                                                            p2.getNode( "d" ) );
5357             if ( !cd.getName().equals( "cd" ) ) {
5358                 return false;
5359             }
5360             final PhylogenyNode cd2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "d" ),
5361                                                                                             p2.getNode( "c" ) );
5362             if ( !cd2.getName().equals( "cd" ) ) {
5363                 return false;
5364             }
5365             final PhylogenyNode cde = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "c" ),
5366                                                                                             p2.getNode( "e" ) );
5367             if ( !cde.getName().equals( "cde" ) ) {
5368                 return false;
5369             }
5370             final PhylogenyNode cde2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "e" ),
5371                                                                                              p2.getNode( "c" ) );
5372             if ( !cde2.getName().equals( "cde" ) ) {
5373                 return false;
5374             }
5375             final PhylogenyNode cdef = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "c" ),
5376                                                                                              p2.getNode( "f" ) );
5377             if ( !cdef.getName().equals( "cdef" ) ) {
5378                 return false;
5379             }
5380             final PhylogenyNode cdef2 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "d" ),
5381                                                                                               p2.getNode( "f" ) );
5382             if ( !cdef2.getName().equals( "cdef" ) ) {
5383                 return false;
5384             }
5385             final PhylogenyNode cdef3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "f" ),
5386                                                                                               p2.getNode( "d" ) );
5387             if ( !cdef3.getName().equals( "cdef" ) ) {
5388                 return false;
5389             }
5390             final PhylogenyNode rt = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p2.getNode( "c" ),
5391                                                                                            p2.getNode( "a" ) );
5392             if ( !rt.getName().equals( "r" ) ) {
5393                 return false;
5394             }
5395             final Phylogeny p3 = factory
5396                     .create( "((((a,(b,c)bc)abc,(d,e)de)abcde,f)abcdef,(((g,h)gh,(i,j)ij)ghij,k)ghijk,l)",
5397                              new NHXParser() )[ 0 ];
5398             PhylogenyMethods.preOrderReId( p3 );
5399             final PhylogenyNode bc_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "b" ),
5400                                                                                              p3.getNode( "c" ) );
5401             if ( !bc_3.getName().equals( "bc" ) ) {
5402                 return false;
5403             }
5404             final PhylogenyNode ac_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "a" ),
5405                                                                                              p3.getNode( "c" ) );
5406             if ( !ac_3.getName().equals( "abc" ) ) {
5407                 return false;
5408             }
5409             final PhylogenyNode ad_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "a" ),
5410                                                                                              p3.getNode( "d" ) );
5411             if ( !ad_3.getName().equals( "abcde" ) ) {
5412                 return false;
5413             }
5414             final PhylogenyNode af_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "a" ),
5415                                                                                              p3.getNode( "f" ) );
5416             if ( !af_3.getName().equals( "abcdef" ) ) {
5417                 return false;
5418             }
5419             final PhylogenyNode ag_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "a" ),
5420                                                                                              p3.getNode( "g" ) );
5421             if ( !ag_3.getName().equals( "" ) ) {
5422                 return false;
5423             }
5424             if ( !ag_3.isRoot() ) {
5425                 return false;
5426             }
5427             final PhylogenyNode al_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "a" ),
5428                                                                                              p3.getNode( "l" ) );
5429             if ( !al_3.getName().equals( "" ) ) {
5430                 return false;
5431             }
5432             if ( !al_3.isRoot() ) {
5433                 return false;
5434             }
5435             final PhylogenyNode kl_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "k" ),
5436                                                                                              p3.getNode( "l" ) );
5437             if ( !kl_3.getName().equals( "" ) ) {
5438                 return false;
5439             }
5440             if ( !kl_3.isRoot() ) {
5441                 return false;
5442             }
5443             final PhylogenyNode fl_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "f" ),
5444                                                                                              p3.getNode( "l" ) );
5445             if ( !fl_3.getName().equals( "" ) ) {
5446                 return false;
5447             }
5448             if ( !fl_3.isRoot() ) {
5449                 return false;
5450             }
5451             final PhylogenyNode gk_3 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p3.getNode( "g" ),
5452                                                                                              p3.getNode( "k" ) );
5453             if ( !gk_3.getName().equals( "ghijk" ) ) {
5454                 return false;
5455             }
5456             final Phylogeny p4 = factory.create( "(a,b,c)r", new NHXParser() )[ 0 ];
5457             PhylogenyMethods.preOrderReId( p4 );
5458             final PhylogenyNode r_4 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p4.getNode( "b" ),
5459                                                                                             p4.getNode( "c" ) );
5460             if ( !r_4.getName().equals( "r" ) ) {
5461                 return false;
5462             }
5463             final Phylogeny p5 = factory.create( "((a,b),c,d)root", new NHXParser() )[ 0 ];
5464             PhylogenyMethods.preOrderReId( p5 );
5465             final PhylogenyNode r_5 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p5.getNode( "a" ),
5466                                                                                             p5.getNode( "c" ) );
5467             if ( !r_5.getName().equals( "root" ) ) {
5468                 return false;
5469             }
5470             final Phylogeny p6 = factory.create( "((a,b),c,d)rot", new NHXParser() )[ 0 ];
5471             PhylogenyMethods.preOrderReId( p6 );
5472             final PhylogenyNode r_6 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p6.getNode( "c" ),
5473                                                                                             p6.getNode( "a" ) );
5474             if ( !r_6.getName().equals( "rot" ) ) {
5475                 return false;
5476             }
5477             final Phylogeny p7 = factory.create( "(((a,b)x,c)x,d,e)rott", new NHXParser() )[ 0 ];
5478             PhylogenyMethods.preOrderReId( p7 );
5479             final PhylogenyNode r_7 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "a" ),
5480                                                                                             p7.getNode( "e" ) );
5481             if ( !r_7.getName().equals( "rott" ) ) {
5482                 return false;
5483             }
5484             final PhylogenyNode r_71 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "e" ),
5485                                                                                              p7.getNode( "a" ) );
5486             if ( !r_71.getName().equals( "rott" ) ) {
5487                 return false;
5488             }
5489             final PhylogenyNode r_72 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "e" ),
5490                                                                                              p7.getNode( "rott" ) );
5491             if ( !r_72.getName().equals( "rott" ) ) {
5492                 return false;
5493             }
5494             final PhylogenyNode r_73 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "rott" ),
5495                                                                                              p7.getNode( "a" ) );
5496             if ( !r_73.getName().equals( "rott" ) ) {
5497                 return false;
5498             }
5499             final PhylogenyNode r_74 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "rott" ),
5500                                                                                              p7.getNode( "rott" ) );
5501             if ( !r_74.getName().equals( "rott" ) ) {
5502                 return false;
5503             }
5504             final PhylogenyNode r_75 = PhylogenyMethods.calculateLCAonTreeWithIdsInPreOrder( p7.getNode( "e" ),
5505                                                                                              p7.getNode( "e" ) );
5506             if ( !r_75.getName().equals( "e" ) ) {
5507                 return false;
5508             }
5509         }
5510         catch ( final Exception e ) {
5511             e.printStackTrace( System.out );
5512             return false;
5513         }
5514         return true;
5515     }
5516
5517     private static boolean testHmmscanOutputParser() {
5518         final String test_dir = Test.PATH_TO_TEST_DATA;
5519         try {
5520             final HmmscanPerDomainTableParser parser1 = new HmmscanPerDomainTableParser( new File( test_dir
5521                     + ForesterUtil.getFileSeparator() + "hmmscan30b3_output_1" ), "MONBR", INDIVIDUAL_SCORE_CUTOFF.NONE );
5522             parser1.parse();
5523             final HmmscanPerDomainTableParser parser2 = new HmmscanPerDomainTableParser( new File( test_dir
5524                     + ForesterUtil.getFileSeparator() + "hmmscan30b3_output_2" ), "MONBR", INDIVIDUAL_SCORE_CUTOFF.NONE );
5525             final List<Protein> proteins = parser2.parse();
5526             if ( parser2.getProteinsEncountered() != 4 ) {
5527                 return false;
5528             }
5529             if ( proteins.size() != 4 ) {
5530                 return false;
5531             }
5532             if ( parser2.getDomainsEncountered() != 69 ) {
5533                 return false;
5534             }
5535             if ( parser2.getDomainsIgnoredDueToDuf() != 0 ) {
5536                 return false;
5537             }
5538             if ( parser2.getDomainsIgnoredDueToFsEval() != 0 ) {
5539                 return false;
5540             }
5541             if ( parser2.getDomainsIgnoredDueToIEval() != 0 ) {
5542                 return false;
5543             }
5544             final Protein p1 = proteins.get( 0 );
5545             if ( p1.getNumberOfProteinDomains() != 15 ) {
5546                 return false;
5547             }
5548             if ( p1.getLength() != 850 ) {
5549                 return false;
5550             }
5551             final Protein p2 = proteins.get( 1 );
5552             if ( p2.getNumberOfProteinDomains() != 51 ) {
5553                 return false;
5554             }
5555             if ( p2.getLength() != 1291 ) {
5556                 return false;
5557             }
5558             final Protein p3 = proteins.get( 2 );
5559             if ( p3.getNumberOfProteinDomains() != 2 ) {
5560                 return false;
5561             }
5562             final Protein p4 = proteins.get( 3 );
5563             if ( p4.getNumberOfProteinDomains() != 1 ) {
5564                 return false;
5565             }
5566             if ( !p4.getProteinDomain( 0 ).getDomainId().toString().equals( "DNA_pol_B_new" ) ) {
5567                 return false;
5568             }
5569             if ( p4.getProteinDomain( 0 ).getFrom() != 51 ) {
5570                 return false;
5571             }
5572             if ( p4.getProteinDomain( 0 ).getTo() != 395 ) {
5573                 return false;
5574             }
5575             if ( !Test.isEqual( p4.getProteinDomain( 0 ).getPerDomainEvalue(), 1.2e-39 ) ) {
5576                 return false;
5577             }
5578             if ( !Test.isEqual( p4.getProteinDomain( 0 ).getPerDomainScore(), 135.7 ) ) {
5579                 return false;
5580             }
5581             if ( !Test.isEqual( p4.getProteinDomain( 0 ).getNumber(), 1 ) ) {
5582                 return false;
5583             }
5584             if ( !Test.isEqual( p4.getProteinDomain( 0 ).getTotalCount(), 1 ) ) {
5585                 return false;
5586             }
5587         }
5588         catch ( final Exception e ) {
5589             e.printStackTrace( System.out );
5590             return false;
5591         }
5592         return true;
5593     }
5594
5595     private static boolean testLastExternalNodeMethods() {
5596         try {
5597             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
5598             final char[] a0 = { '(', '(', 'A', ',', 'B', ')', ',', '(', 'C', ',', 'D', ')', ')', };
5599             final Phylogeny t0 = factory.create( a0, new NHXParser() )[ 0 ];
5600             final PhylogenyNode n1 = t0.getNode( "A" );
5601             if ( n1.isLastExternalNode() ) {
5602                 return false;
5603             }
5604             final PhylogenyNode n2 = t0.getNode( "B" );
5605             if ( n2.isLastExternalNode() ) {
5606                 return false;
5607             }
5608             final PhylogenyNode n3 = t0.getNode( "C" );
5609             if ( n3.isLastExternalNode() ) {
5610                 return false;
5611             }
5612             final PhylogenyNode n4 = t0.getNode( "D" );
5613             if ( !n4.isLastExternalNode() ) {
5614                 return false;
5615             }
5616         }
5617         catch ( final Exception e ) {
5618             e.printStackTrace( System.out );
5619             return false;
5620         }
5621         return true;
5622     }
5623
5624     private static boolean testLevelOrderIterator() {
5625         try {
5626             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
5627             final Phylogeny t0 = factory.create( "((A,B)ab,(C,D)cd)r", new NHXParser() )[ 0 ];
5628             PhylogenyNodeIterator it0;
5629             for( it0 = t0.iteratorLevelOrder(); it0.hasNext(); ) {
5630                 it0.next();
5631             }
5632             for( it0.reset(); it0.hasNext(); ) {
5633                 it0.next();
5634             }
5635             final PhylogenyNodeIterator it = t0.iteratorLevelOrder();
5636             if ( !it.next().getName().equals( "r" ) ) {
5637                 return false;
5638             }
5639             if ( !it.next().getName().equals( "ab" ) ) {
5640                 return false;
5641             }
5642             if ( !it.next().getName().equals( "cd" ) ) {
5643                 return false;
5644             }
5645             if ( !it.next().getName().equals( "A" ) ) {
5646                 return false;
5647             }
5648             if ( !it.next().getName().equals( "B" ) ) {
5649                 return false;
5650             }
5651             if ( !it.next().getName().equals( "C" ) ) {
5652                 return false;
5653             }
5654             if ( !it.next().getName().equals( "D" ) ) {
5655                 return false;
5656             }
5657             if ( it.hasNext() ) {
5658                 return false;
5659             }
5660             final Phylogeny t2 = factory.create( "(((1,2,(a,(X,Y,Z)b)3,4,5,6)A,B,C)abc,(D,E,(f1,(f21)f2,f3)F,G)defg)r",
5661                                                  new NHXParser() )[ 0 ];
5662             PhylogenyNodeIterator it2;
5663             for( it2 = t2.iteratorLevelOrder(); it2.hasNext(); ) {
5664                 it2.next();
5665             }
5666             for( it2.reset(); it2.hasNext(); ) {
5667                 it2.next();
5668             }
5669             final PhylogenyNodeIterator it3 = t2.iteratorLevelOrder();
5670             if ( !it3.next().getName().equals( "r" ) ) {
5671                 return false;
5672             }
5673             if ( !it3.next().getName().equals( "abc" ) ) {
5674                 return false;
5675             }
5676             if ( !it3.next().getName().equals( "defg" ) ) {
5677                 return false;
5678             }
5679             if ( !it3.next().getName().equals( "A" ) ) {
5680                 return false;
5681             }
5682             if ( !it3.next().getName().equals( "B" ) ) {
5683                 return false;
5684             }
5685             if ( !it3.next().getName().equals( "C" ) ) {
5686                 return false;
5687             }
5688             if ( !it3.next().getName().equals( "D" ) ) {
5689                 return false;
5690             }
5691             if ( !it3.next().getName().equals( "E" ) ) {
5692                 return false;
5693             }
5694             if ( !it3.next().getName().equals( "F" ) ) {
5695                 return false;
5696             }
5697             if ( !it3.next().getName().equals( "G" ) ) {
5698                 return false;
5699             }
5700             if ( !it3.next().getName().equals( "1" ) ) {
5701                 return false;
5702             }
5703             if ( !it3.next().getName().equals( "2" ) ) {
5704                 return false;
5705             }
5706             if ( !it3.next().getName().equals( "3" ) ) {
5707                 return false;
5708             }
5709             if ( !it3.next().getName().equals( "4" ) ) {
5710                 return false;
5711             }
5712             if ( !it3.next().getName().equals( "5" ) ) {
5713                 return false;
5714             }
5715             if ( !it3.next().getName().equals( "6" ) ) {
5716                 return false;
5717             }
5718             if ( !it3.next().getName().equals( "f1" ) ) {
5719                 return false;
5720             }
5721             if ( !it3.next().getName().equals( "f2" ) ) {
5722                 return false;
5723             }
5724             if ( !it3.next().getName().equals( "f3" ) ) {
5725                 return false;
5726             }
5727             if ( !it3.next().getName().equals( "a" ) ) {
5728                 return false;
5729             }
5730             if ( !it3.next().getName().equals( "b" ) ) {
5731                 return false;
5732             }
5733             if ( !it3.next().getName().equals( "f21" ) ) {
5734                 return false;
5735             }
5736             if ( !it3.next().getName().equals( "X" ) ) {
5737                 return false;
5738             }
5739             if ( !it3.next().getName().equals( "Y" ) ) {
5740                 return false;
5741             }
5742             if ( !it3.next().getName().equals( "Z" ) ) {
5743                 return false;
5744             }
5745             if ( it3.hasNext() ) {
5746                 return false;
5747             }
5748             final Phylogeny t4 = factory.create( "((((D)C)B)A)r", new NHXParser() )[ 0 ];
5749             PhylogenyNodeIterator it4;
5750             for( it4 = t4.iteratorLevelOrder(); it4.hasNext(); ) {
5751                 it4.next();
5752             }
5753             for( it4.reset(); it4.hasNext(); ) {
5754                 it4.next();
5755             }
5756             final PhylogenyNodeIterator it5 = t4.iteratorLevelOrder();
5757             if ( !it5.next().getName().equals( "r" ) ) {
5758                 return false;
5759             }
5760             if ( !it5.next().getName().equals( "A" ) ) {
5761                 return false;
5762             }
5763             if ( !it5.next().getName().equals( "B" ) ) {
5764                 return false;
5765             }
5766             if ( !it5.next().getName().equals( "C" ) ) {
5767                 return false;
5768             }
5769             if ( !it5.next().getName().equals( "D" ) ) {
5770                 return false;
5771             }
5772             final Phylogeny t5 = factory.create( "A", new NHXParser() )[ 0 ];
5773             PhylogenyNodeIterator it6;
5774             for( it6 = t5.iteratorLevelOrder(); it6.hasNext(); ) {
5775                 it6.next();
5776             }
5777             for( it6.reset(); it6.hasNext(); ) {
5778                 it6.next();
5779             }
5780             final PhylogenyNodeIterator it7 = t5.iteratorLevelOrder();
5781             if ( !it7.next().getName().equals( "A" ) ) {
5782                 return false;
5783             }
5784             if ( it.hasNext() ) {
5785                 return false;
5786             }
5787         }
5788         catch ( final Exception e ) {
5789             e.printStackTrace( System.out );
5790             return false;
5791         }
5792         return true;
5793     }
5794
5795     private static boolean testMafft( final String path ) {
5796         try {
5797             final List<String> opts = new ArrayList<String>();
5798             opts.add( "--maxiterate" );
5799             opts.add( "1000" );
5800             opts.add( "--localpair" );
5801             opts.add( "--quiet" );
5802             Msa msa = null;
5803             final MsaInferrer mafft = Mafft.createInstance( path );
5804             msa = mafft.infer( new File( PATH_TO_TEST_DATA + "ncbi_sn.fasta" ), opts );
5805             if ( ( msa == null ) || ( msa.getLength() < 20 ) || ( msa.getNumberOfSequences() != 19 ) ) {
5806                 return false;
5807             }
5808             if ( !msa.getIdentifier( 0 ).toString().equals( "a" ) ) {
5809                 return false;
5810             }
5811         }
5812         catch ( final Exception e ) {
5813             e.printStackTrace( System.out );
5814             return false;
5815         }
5816         return true;
5817     }
5818
5819     private static boolean testMidpointrooting() {
5820         try {
5821             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
5822             final Phylogeny t0 = factory.create( "(A:1,B:4,C:2,D:2,E:6,F:1,G:1,H:1)", new NHXParser() )[ 0 ];
5823             PhylogenyMethods.midpointRoot( t0 );
5824             if ( !isEqual( t0.getNode( "E" ).getDistanceToParent(), 5 ) ) {
5825                 return false;
5826             }
5827             if ( !isEqual( t0.getNode( "B" ).getDistanceToParent(), 4 ) ) {
5828                 return false;
5829             }
5830             if ( !isEqual( PhylogenyMethods.calculateLCA( t0.getNode( "F" ), t0.getNode( "G" ) ).getDistanceToParent(),
5831                            1 ) ) {
5832                 return false;
5833             }
5834             final Phylogeny t1 = factory.create( "((A:1,B:2)AB:1[&&NHX:B=55],(C:3,D:4)CD:3[&&NHX:B=10])ABCD:0.5",
5835                                                  new NHXParser() )[ 0 ];
5836             if ( !t1.isRooted() ) {
5837                 return false;
5838             }
5839             PhylogenyMethods.midpointRoot( t1 );
5840             if ( !isEqual( t1.getNode( "A" ).getDistanceToParent(), 1 ) ) {
5841                 return false;
5842             }
5843             if ( !isEqual( t1.getNode( "B" ).getDistanceToParent(), 2 ) ) {
5844                 return false;
5845             }
5846             if ( !isEqual( t1.getNode( "C" ).getDistanceToParent(), 3 ) ) {
5847                 return false;
5848             }
5849             if ( !isEqual( t1.getNode( "D" ).getDistanceToParent(), 4 ) ) {
5850                 return false;
5851             }
5852             if ( !isEqual( t1.getNode( "CD" ).getDistanceToParent(), 1 ) ) {
5853                 return false;
5854             }
5855             if ( !isEqual( t1.getNode( "AB" ).getDistanceToParent(), 3 ) ) {
5856                 return false;
5857             }
5858             t1.reRoot( t1.getNode( "A" ) );
5859             PhylogenyMethods.midpointRoot( t1 );
5860             if ( !isEqual( t1.getNode( "A" ).getDistanceToParent(), 1 ) ) {
5861                 return false;
5862             }
5863             if ( !isEqual( t1.getNode( "B" ).getDistanceToParent(), 2 ) ) {
5864                 return false;
5865             }
5866             if ( !isEqual( t1.getNode( "C" ).getDistanceToParent(), 3 ) ) {
5867                 return false;
5868             }
5869             if ( !isEqual( t1.getNode( "D" ).getDistanceToParent(), 4 ) ) {
5870                 return false;
5871             }
5872             if ( !isEqual( t1.getNode( "CD" ).getDistanceToParent(), 1 ) ) {
5873                 System.exit( -1 );
5874                 return false;
5875             }
5876             if ( !isEqual( t1.getNode( "AB" ).getDistanceToParent(), 3 ) ) {
5877                 return false;
5878             }
5879         }
5880         catch ( final Exception e ) {
5881             e.printStackTrace( System.out );
5882             return false;
5883         }
5884         return true;
5885     }
5886
5887     private static boolean testMsaQualityMethod() {
5888         try {
5889             final Sequence s0 = BasicSequence.createAaSequence( "a", "ABAXEFGHIJJE-" );
5890             final Sequence s1 = BasicSequence.createAaSequence( "b", "ABBXEFGHIJJBB" );
5891             final Sequence s2 = BasicSequence.createAaSequence( "c", "AXCXEFGHIJJ--" );
5892             final Sequence s3 = BasicSequence.createAaSequence( "d", "AXDDEFGHIJ---" );
5893             final List<Sequence> l = new ArrayList<Sequence>();
5894             l.add( s0 );
5895             l.add( s1 );
5896             l.add( s2 );
5897             l.add( s3 );
5898             final Msa msa = BasicMsa.createInstance( l );
5899             if ( !isEqual( 1, MsaMethods.calculateIdentityRatio( msa, 0 ) ) ) {
5900                 return false;
5901             }
5902             if ( !isEqual( 0.5, MsaMethods.calculateIdentityRatio( msa, 1 ) ) ) {
5903                 return false;
5904             }
5905             if ( !isEqual( 0.25, MsaMethods.calculateIdentityRatio( msa, 2 ) ) ) {
5906                 return false;
5907             }
5908             if ( !isEqual( 0.75, MsaMethods.calculateIdentityRatio( msa, 3 ) ) ) {
5909                 return false;
5910             }
5911             if ( !isEqual( 0.75, MsaMethods.calculateIdentityRatio( msa, 10 ) ) ) {
5912                 return false;
5913             }
5914             if ( !isEqual( 0.25, MsaMethods.calculateIdentityRatio( msa, 11 ) ) ) {
5915                 return false;
5916             }
5917             if ( !isEqual( 0.25, MsaMethods.calculateIdentityRatio( msa, 12 ) ) ) {
5918                 return false;
5919             }
5920         }
5921         catch ( final Exception e ) {
5922             e.printStackTrace( System.out );
5923             return false;
5924         }
5925         return true;
5926     }
5927
5928     private static boolean testNextNodeWithCollapsing() {
5929         try {
5930             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
5931             PhylogenyNode n;
5932             List<PhylogenyNode> ext = new ArrayList<PhylogenyNode>();
5933             final StringBuffer sb0 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
5934             final Phylogeny t0 = factory.create( sb0, new NHXParser() )[ 0 ];
5935             t0.getNode( "cd" ).setCollapse( true );
5936             t0.getNode( "cde" ).setCollapse( true );
5937             n = t0.getFirstExternalNode();
5938             while ( n != null ) {
5939                 ext.add( n );
5940                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
5941             }
5942             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
5943                 return false;
5944             }
5945             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
5946                 return false;
5947             }
5948             if ( !ext.get( 2 ).getName().equals( "cde" ) ) {
5949                 return false;
5950             }
5951             if ( !ext.get( 3 ).getName().equals( "f" ) ) {
5952                 return false;
5953             }
5954             if ( !ext.get( 4 ).getName().equals( "g" ) ) {
5955                 return false;
5956             }
5957             if ( !ext.get( 5 ).getName().equals( "h" ) ) {
5958                 return false;
5959             }
5960             ext.clear();
5961             final StringBuffer sb1 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
5962             final Phylogeny t1 = factory.create( sb1, new NHXParser() )[ 0 ];
5963             t1.getNode( "ab" ).setCollapse( true );
5964             t1.getNode( "cd" ).setCollapse( true );
5965             t1.getNode( "cde" ).setCollapse( true );
5966             n = t1.getNode( "ab" );
5967             ext = new ArrayList<PhylogenyNode>();
5968             while ( n != null ) {
5969                 ext.add( n );
5970                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
5971             }
5972             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
5973                 return false;
5974             }
5975             if ( !ext.get( 1 ).getName().equals( "cde" ) ) {
5976                 return false;
5977             }
5978             if ( !ext.get( 2 ).getName().equals( "f" ) ) {
5979                 return false;
5980             }
5981             if ( !ext.get( 3 ).getName().equals( "g" ) ) {
5982                 return false;
5983             }
5984             if ( !ext.get( 4 ).getName().equals( "h" ) ) {
5985                 return false;
5986             }
5987             //
5988             //
5989             ext.clear();
5990             final StringBuffer sb2 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
5991             final Phylogeny t2 = factory.create( sb2, new NHXParser() )[ 0 ];
5992             t2.getNode( "ab" ).setCollapse( true );
5993             t2.getNode( "cd" ).setCollapse( true );
5994             t2.getNode( "cde" ).setCollapse( true );
5995             t2.getNode( "c" ).setCollapse( true );
5996             t2.getNode( "d" ).setCollapse( true );
5997             t2.getNode( "e" ).setCollapse( true );
5998             t2.getNode( "gh" ).setCollapse( true );
5999             n = t2.getNode( "ab" );
6000             ext = new ArrayList<PhylogenyNode>();
6001             while ( n != null ) {
6002                 ext.add( n );
6003                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6004             }
6005             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6006                 return false;
6007             }
6008             if ( !ext.get( 1 ).getName().equals( "cde" ) ) {
6009                 return false;
6010             }
6011             if ( !ext.get( 2 ).getName().equals( "f" ) ) {
6012                 return false;
6013             }
6014             if ( !ext.get( 3 ).getName().equals( "gh" ) ) {
6015                 return false;
6016             }
6017             //
6018             //
6019             ext.clear();
6020             final StringBuffer sb3 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6021             final Phylogeny t3 = factory.create( sb3, new NHXParser() )[ 0 ];
6022             t3.getNode( "ab" ).setCollapse( true );
6023             t3.getNode( "cd" ).setCollapse( true );
6024             t3.getNode( "cde" ).setCollapse( true );
6025             t3.getNode( "c" ).setCollapse( true );
6026             t3.getNode( "d" ).setCollapse( true );
6027             t3.getNode( "e" ).setCollapse( true );
6028             t3.getNode( "gh" ).setCollapse( true );
6029             t3.getNode( "fgh" ).setCollapse( true );
6030             n = t3.getNode( "ab" );
6031             ext = new ArrayList<PhylogenyNode>();
6032             while ( n != null ) {
6033                 ext.add( n );
6034                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6035             }
6036             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6037                 return false;
6038             }
6039             if ( !ext.get( 1 ).getName().equals( "cde" ) ) {
6040                 return false;
6041             }
6042             if ( !ext.get( 2 ).getName().equals( "fgh" ) ) {
6043                 return false;
6044             }
6045             //
6046             //
6047             ext.clear();
6048             final StringBuffer sb4 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6049             final Phylogeny t4 = factory.create( sb4, new NHXParser() )[ 0 ];
6050             t4.getNode( "ab" ).setCollapse( true );
6051             t4.getNode( "cd" ).setCollapse( true );
6052             t4.getNode( "cde" ).setCollapse( true );
6053             t4.getNode( "c" ).setCollapse( true );
6054             t4.getNode( "d" ).setCollapse( true );
6055             t4.getNode( "e" ).setCollapse( true );
6056             t4.getNode( "gh" ).setCollapse( true );
6057             t4.getNode( "fgh" ).setCollapse( true );
6058             t4.getNode( "abcdefgh" ).setCollapse( true );
6059             n = t4.getNode( "abcdefgh" );
6060             if ( n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes() != null ) {
6061                 return false;
6062             }
6063             //
6064             //
6065             final StringBuffer sb5 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
6066             final Phylogeny t5 = factory.create( sb5, new NHXParser() )[ 0 ];
6067             ext.clear();
6068             n = t5.getFirstExternalNode();
6069             while ( n != null ) {
6070                 ext.add( n );
6071                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6072             }
6073             if ( ext.size() != 8 ) {
6074                 return false;
6075             }
6076             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6077                 return false;
6078             }
6079             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6080                 return false;
6081             }
6082             if ( !ext.get( 2 ).getName().equals( "c" ) ) {
6083                 return false;
6084             }
6085             if ( !ext.get( 3 ).getName().equals( "d" ) ) {
6086                 return false;
6087             }
6088             if ( !ext.get( 4 ).getName().equals( "e" ) ) {
6089                 return false;
6090             }
6091             if ( !ext.get( 5 ).getName().equals( "f" ) ) {
6092                 return false;
6093             }
6094             if ( !ext.get( 6 ).getName().equals( "g" ) ) {
6095                 return false;
6096             }
6097             if ( !ext.get( 7 ).getName().equals( "h" ) ) {
6098                 return false;
6099             }
6100             //
6101             //
6102             final StringBuffer sb6 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
6103             final Phylogeny t6 = factory.create( sb6, new NHXParser() )[ 0 ];
6104             ext.clear();
6105             t6.getNode( "ab" ).setCollapse( true );
6106             n = t6.getNode( "ab" );
6107             while ( n != null ) {
6108                 ext.add( n );
6109                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6110             }
6111             if ( ext.size() != 7 ) {
6112                 return false;
6113             }
6114             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6115                 return false;
6116             }
6117             if ( !ext.get( 1 ).getName().equals( "c" ) ) {
6118                 return false;
6119             }
6120             if ( !ext.get( 2 ).getName().equals( "d" ) ) {
6121                 return false;
6122             }
6123             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6124                 return false;
6125             }
6126             if ( !ext.get( 4 ).getName().equals( "f" ) ) {
6127                 return false;
6128             }
6129             if ( !ext.get( 5 ).getName().equals( "g" ) ) {
6130                 return false;
6131             }
6132             if ( !ext.get( 6 ).getName().equals( "h" ) ) {
6133                 return false;
6134             }
6135             //
6136             //
6137             final StringBuffer sb7 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
6138             final Phylogeny t7 = factory.create( sb7, new NHXParser() )[ 0 ];
6139             ext.clear();
6140             t7.getNode( "cd" ).setCollapse( true );
6141             n = t7.getNode( "a" );
6142             while ( n != null ) {
6143                 ext.add( n );
6144                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6145             }
6146             if ( ext.size() != 7 ) {
6147                 return false;
6148             }
6149             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6150                 return false;
6151             }
6152             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6153                 return false;
6154             }
6155             if ( !ext.get( 2 ).getName().equals( "cd" ) ) {
6156                 return false;
6157             }
6158             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6159                 return false;
6160             }
6161             if ( !ext.get( 4 ).getName().equals( "f" ) ) {
6162                 return false;
6163             }
6164             if ( !ext.get( 5 ).getName().equals( "g" ) ) {
6165                 return false;
6166             }
6167             if ( !ext.get( 6 ).getName().equals( "h" ) ) {
6168                 return false;
6169             }
6170             //
6171             //
6172             final StringBuffer sb8 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h))fgh)cdefgh)abcdefgh" );
6173             final Phylogeny t8 = factory.create( sb8, new NHXParser() )[ 0 ];
6174             ext.clear();
6175             t8.getNode( "cd" ).setCollapse( true );
6176             t8.getNode( "c" ).setCollapse( true );
6177             t8.getNode( "d" ).setCollapse( true );
6178             n = t8.getNode( "a" );
6179             while ( n != null ) {
6180                 ext.add( n );
6181                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6182             }
6183             if ( ext.size() != 7 ) {
6184                 return false;
6185             }
6186             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6187                 return false;
6188             }
6189             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6190                 return false;
6191             }
6192             if ( !ext.get( 2 ).getName().equals( "cd" ) ) {
6193                 System.out.println( "2 fail" );
6194                 return false;
6195             }
6196             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6197                 return false;
6198             }
6199             if ( !ext.get( 4 ).getName().equals( "f" ) ) {
6200                 return false;
6201             }
6202             if ( !ext.get( 5 ).getName().equals( "g" ) ) {
6203                 return false;
6204             }
6205             if ( !ext.get( 6 ).getName().equals( "h" ) ) {
6206                 return false;
6207             }
6208             //
6209             //
6210             final StringBuffer sb9 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6211             final Phylogeny t9 = factory.create( sb9, new NHXParser() )[ 0 ];
6212             ext.clear();
6213             t9.getNode( "gh" ).setCollapse( true );
6214             n = t9.getNode( "a" );
6215             while ( n != null ) {
6216                 ext.add( n );
6217                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6218             }
6219             if ( ext.size() != 7 ) {
6220                 return false;
6221             }
6222             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6223                 return false;
6224             }
6225             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6226                 return false;
6227             }
6228             if ( !ext.get( 2 ).getName().equals( "c" ) ) {
6229                 return false;
6230             }
6231             if ( !ext.get( 3 ).getName().equals( "d" ) ) {
6232                 return false;
6233             }
6234             if ( !ext.get( 4 ).getName().equals( "e" ) ) {
6235                 return false;
6236             }
6237             if ( !ext.get( 5 ).getName().equals( "f" ) ) {
6238                 return false;
6239             }
6240             if ( !ext.get( 6 ).getName().equals( "gh" ) ) {
6241                 return false;
6242             }
6243             //
6244             //
6245             final StringBuffer sb10 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6246             final Phylogeny t10 = factory.create( sb10, new NHXParser() )[ 0 ];
6247             ext.clear();
6248             t10.getNode( "gh" ).setCollapse( true );
6249             t10.getNode( "g" ).setCollapse( true );
6250             t10.getNode( "h" ).setCollapse( true );
6251             n = t10.getNode( "a" );
6252             while ( n != null ) {
6253                 ext.add( n );
6254                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6255             }
6256             if ( ext.size() != 7 ) {
6257                 return false;
6258             }
6259             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6260                 return false;
6261             }
6262             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6263                 return false;
6264             }
6265             if ( !ext.get( 2 ).getName().equals( "c" ) ) {
6266                 return false;
6267             }
6268             if ( !ext.get( 3 ).getName().equals( "d" ) ) {
6269                 return false;
6270             }
6271             if ( !ext.get( 4 ).getName().equals( "e" ) ) {
6272                 return false;
6273             }
6274             if ( !ext.get( 5 ).getName().equals( "f" ) ) {
6275                 return false;
6276             }
6277             if ( !ext.get( 6 ).getName().equals( "gh" ) ) {
6278                 return false;
6279             }
6280             //
6281             //
6282             final StringBuffer sb11 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6283             final Phylogeny t11 = factory.create( sb11, new NHXParser() )[ 0 ];
6284             ext.clear();
6285             t11.getNode( "gh" ).setCollapse( true );
6286             t11.getNode( "fgh" ).setCollapse( true );
6287             n = t11.getNode( "a" );
6288             while ( n != null ) {
6289                 ext.add( n );
6290                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6291             }
6292             if ( ext.size() != 6 ) {
6293                 return false;
6294             }
6295             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6296                 return false;
6297             }
6298             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6299                 return false;
6300             }
6301             if ( !ext.get( 2 ).getName().equals( "c" ) ) {
6302                 return false;
6303             }
6304             if ( !ext.get( 3 ).getName().equals( "d" ) ) {
6305                 return false;
6306             }
6307             if ( !ext.get( 4 ).getName().equals( "e" ) ) {
6308                 return false;
6309             }
6310             if ( !ext.get( 5 ).getName().equals( "fgh" ) ) {
6311                 return false;
6312             }
6313             //
6314             //
6315             final StringBuffer sb12 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6316             final Phylogeny t12 = factory.create( sb12, new NHXParser() )[ 0 ];
6317             ext.clear();
6318             t12.getNode( "gh" ).setCollapse( true );
6319             t12.getNode( "fgh" ).setCollapse( true );
6320             t12.getNode( "g" ).setCollapse( true );
6321             t12.getNode( "h" ).setCollapse( true );
6322             t12.getNode( "f" ).setCollapse( true );
6323             n = t12.getNode( "a" );
6324             while ( n != null ) {
6325                 ext.add( n );
6326                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6327             }
6328             if ( ext.size() != 6 ) {
6329                 return false;
6330             }
6331             if ( !ext.get( 0 ).getName().equals( "a" ) ) {
6332                 return false;
6333             }
6334             if ( !ext.get( 1 ).getName().equals( "b" ) ) {
6335                 return false;
6336             }
6337             if ( !ext.get( 2 ).getName().equals( "c" ) ) {
6338                 return false;
6339             }
6340             if ( !ext.get( 3 ).getName().equals( "d" ) ) {
6341                 return false;
6342             }
6343             if ( !ext.get( 4 ).getName().equals( "e" ) ) {
6344                 return false;
6345             }
6346             if ( !ext.get( 5 ).getName().equals( "fgh" ) ) {
6347                 return false;
6348             }
6349             //
6350             //
6351             final StringBuffer sb13 = new StringBuffer( "((a,b)ab,(((c,d)cd,e)cde,(f,(g,h)gh)fgh)cdefgh)abcdefgh" );
6352             final Phylogeny t13 = factory.create( sb13, new NHXParser() )[ 0 ];
6353             ext.clear();
6354             t13.getNode( "ab" ).setCollapse( true );
6355             t13.getNode( "b" ).setCollapse( true );
6356             t13.getNode( "fgh" ).setCollapse( true );
6357             t13.getNode( "gh" ).setCollapse( true );
6358             n = t13.getNode( "ab" );
6359             while ( n != null ) {
6360                 ext.add( n );
6361                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6362             }
6363             if ( ext.size() != 5 ) {
6364                 return false;
6365             }
6366             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6367                 return false;
6368             }
6369             if ( !ext.get( 1 ).getName().equals( "c" ) ) {
6370                 return false;
6371             }
6372             if ( !ext.get( 2 ).getName().equals( "d" ) ) {
6373                 return false;
6374             }
6375             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6376                 return false;
6377             }
6378             if ( !ext.get( 4 ).getName().equals( "fgh" ) ) {
6379                 return false;
6380             }
6381             //
6382             //
6383             final StringBuffer sb14 = new StringBuffer( "((a,b,0)ab,(((c,d)cd,e)cde,(f,(g,h,1,2)gh,0)fgh)cdefgh)abcdefgh" );
6384             final Phylogeny t14 = factory.create( sb14, new NHXParser() )[ 0 ];
6385             ext.clear();
6386             t14.getNode( "ab" ).setCollapse( true );
6387             t14.getNode( "a" ).setCollapse( true );
6388             t14.getNode( "fgh" ).setCollapse( true );
6389             t14.getNode( "gh" ).setCollapse( true );
6390             n = t14.getNode( "ab" );
6391             while ( n != null ) {
6392                 ext.add( n );
6393                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6394             }
6395             if ( ext.size() != 5 ) {
6396                 return false;
6397             }
6398             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6399                 return false;
6400             }
6401             if ( !ext.get( 1 ).getName().equals( "c" ) ) {
6402                 return false;
6403             }
6404             if ( !ext.get( 2 ).getName().equals( "d" ) ) {
6405                 return false;
6406             }
6407             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6408                 return false;
6409             }
6410             if ( !ext.get( 4 ).getName().equals( "fgh" ) ) {
6411                 return false;
6412             }
6413             //
6414             //
6415             final StringBuffer sb15 = new StringBuffer( "((a,b,0)ab,(((c,d)cd,e)cde,x,(f,(g,h,1,2)gh,0)fgh)cdefgh)abcdefgh" );
6416             final Phylogeny t15 = factory.create( sb15, new NHXParser() )[ 0 ];
6417             ext.clear();
6418             t15.getNode( "ab" ).setCollapse( true );
6419             t15.getNode( "a" ).setCollapse( true );
6420             t15.getNode( "fgh" ).setCollapse( true );
6421             t15.getNode( "gh" ).setCollapse( true );
6422             n = t15.getNode( "ab" );
6423             while ( n != null ) {
6424                 ext.add( n );
6425                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6426             }
6427             if ( ext.size() != 6 ) {
6428                 return false;
6429             }
6430             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6431                 return false;
6432             }
6433             if ( !ext.get( 1 ).getName().equals( "c" ) ) {
6434                 return false;
6435             }
6436             if ( !ext.get( 2 ).getName().equals( "d" ) ) {
6437                 return false;
6438             }
6439             if ( !ext.get( 3 ).getName().equals( "e" ) ) {
6440                 return false;
6441             }
6442             if ( !ext.get( 4 ).getName().equals( "x" ) ) {
6443                 return false;
6444             }
6445             if ( !ext.get( 5 ).getName().equals( "fgh" ) ) {
6446                 return false;
6447             }
6448             //
6449             //
6450             final StringBuffer sb16 = new StringBuffer( "((a,b,0)ab,(((c,d)cd,e)cde,x,(f,(g,h,1,2)gh,0)fgh)cdefgh)abcdefgh" );
6451             final Phylogeny t16 = factory.create( sb16, new NHXParser() )[ 0 ];
6452             ext.clear();
6453             t16.getNode( "ab" ).setCollapse( true );
6454             t16.getNode( "a" ).setCollapse( true );
6455             t16.getNode( "fgh" ).setCollapse( true );
6456             t16.getNode( "gh" ).setCollapse( true );
6457             t16.getNode( "cd" ).setCollapse( true );
6458             t16.getNode( "cde" ).setCollapse( true );
6459             t16.getNode( "d" ).setCollapse( true );
6460             t16.getNode( "x" ).setCollapse( true );
6461             n = t16.getNode( "ab" );
6462             while ( n != null ) {
6463                 ext.add( n );
6464                 n = n.getNextExternalNodeWhileTakingIntoAccountCollapsedNodes();
6465             }
6466             if ( ext.size() != 4 ) {
6467                 return false;
6468             }
6469             if ( !ext.get( 0 ).getName().equals( "ab" ) ) {
6470                 return false;
6471             }
6472             if ( !ext.get( 1 ).getName().equals( "cde" ) ) {
6473                 return false;
6474             }
6475             if ( !ext.get( 2 ).getName().equals( "x" ) ) {
6476                 return false;
6477             }
6478             if ( !ext.get( 3 ).getName().equals( "fgh" ) ) {
6479                 return false;
6480             }
6481         }
6482         catch ( final Exception e ) {
6483             e.printStackTrace( System.out );
6484             return false;
6485         }
6486         return true;
6487     }
6488
6489     private static boolean testNexusCharactersParsing() {
6490         try {
6491             final NexusCharactersParser parser = new NexusCharactersParser();
6492             parser.setSource( new File( Test.PATH_TO_TEST_DATA + "nexus_test_7.nex" ) );
6493             parser.parse();
6494             String[] labels = parser.getCharStateLabels();
6495             if ( labels.length != 7 ) {
6496                 return false;
6497             }
6498             if ( !labels[ 0 ].equals( "14-3-3" ) ) {
6499                 return false;
6500             }
6501             if ( !labels[ 1 ].equals( "2-Hacid_dh" ) ) {
6502                 return false;
6503             }
6504             if ( !labels[ 2 ].equals( "2-Hacid_dh_C" ) ) {
6505                 return false;
6506             }
6507             if ( !labels[ 3 ].equals( "2-oxoacid_dh" ) ) {
6508                 return false;
6509             }
6510             if ( !labels[ 4 ].equals( "2OG-FeII_Oxy" ) ) {
6511                 return false;
6512             }
6513             if ( !labels[ 5 ].equals( "3-HAO" ) ) {
6514                 return false;
6515             }
6516             if ( !labels[ 6 ].equals( "3_5_exonuc" ) ) {
6517                 return false;
6518             }
6519             parser.setSource( new File( Test.PATH_TO_TEST_DATA + "nexus_test_8.nex" ) );
6520             parser.parse();
6521             labels = parser.getCharStateLabels();
6522             if ( labels.length != 7 ) {
6523                 return false;
6524             }
6525             if ( !labels[ 0 ].equals( "14-3-3" ) ) {
6526                 return false;
6527             }
6528             if ( !labels[ 1 ].equals( "2-Hacid_dh" ) ) {
6529                 return false;
6530             }
6531             if ( !labels[ 2 ].equals( "2-Hacid_dh_C" ) ) {
6532                 return false;
6533             }
6534             if ( !labels[ 3 ].equals( "2-oxoacid_dh" ) ) {
6535                 return false;
6536             }
6537             if ( !labels[ 4 ].equals( "2OG-FeII_Oxy" ) ) {
6538                 return false;
6539             }
6540             if ( !labels[ 5 ].equals( "3-HAO" ) ) {
6541                 return false;
6542             }
6543             if ( !labels[ 6 ].equals( "3_5_exonuc" ) ) {
6544                 return false;
6545             }
6546         }
6547         catch ( final Exception e ) {
6548             e.printStackTrace( System.out );
6549             return false;
6550         }
6551         return true;
6552     }
6553
6554     private static boolean testNexusMatrixParsing() {
6555         try {
6556             final NexusBinaryStatesMatrixParser parser = new NexusBinaryStatesMatrixParser();
6557             parser.setSource( new File( Test.PATH_TO_TEST_DATA + "nexus_test_9.nex" ) );
6558             parser.parse();
6559             final CharacterStateMatrix<BinaryStates> m = parser.getMatrix();
6560             if ( m.getNumberOfCharacters() != 9 ) {
6561                 return false;
6562             }
6563             if ( m.getNumberOfIdentifiers() != 5 ) {
6564                 return false;
6565             }
6566             if ( m.getState( 0, 0 ) != BinaryStates.PRESENT ) {
6567                 return false;
6568             }
6569             if ( m.getState( 0, 1 ) != BinaryStates.ABSENT ) {
6570                 return false;
6571             }
6572             if ( m.getState( 1, 0 ) != BinaryStates.PRESENT ) {
6573                 return false;
6574             }
6575             if ( m.getState( 2, 0 ) != BinaryStates.ABSENT ) {
6576                 return false;
6577             }
6578             if ( m.getState( 4, 8 ) != BinaryStates.PRESENT ) {
6579                 return false;
6580             }
6581             if ( !m.getIdentifier( 0 ).equals( "MOUSE" ) ) {
6582                 return false;
6583             }
6584             if ( !m.getIdentifier( 4 ).equals( "ARATH" ) ) {
6585                 return false;
6586             }
6587             //            if ( labels.length != 7 ) {
6588             //                return false;
6589             //            }
6590             //            if ( !labels[ 0 ].equals( "14-3-3" ) ) {
6591             //                return false;
6592             //            }
6593             //            if ( !labels[ 1 ].equals( "2-Hacid_dh" ) ) {
6594             //                return false;
6595             //            }
6596             //            if ( !labels[ 2 ].equals( "2-Hacid_dh_C" ) ) {
6597             //                return false;
6598             //            }
6599             //            if ( !labels[ 3 ].equals( "2-oxoacid_dh" ) ) {
6600             //                return false;
6601             //            }
6602             //            if ( !labels[ 4 ].equals( "2OG-FeII_Oxy" ) ) {
6603             //                return false;
6604             //            }
6605             //            if ( !labels[ 5 ].equals( "3-HAO" ) ) {
6606             //                return false;
6607             //            }
6608             //            if ( !labels[ 6 ].equals( "3_5_exonuc" ) ) {
6609             //                return false;
6610             //            }
6611             //            parser.setSource( new File( Test.PATH_TO_TEST_DATA + "nexus_test_8.nex" ) );
6612             //            parser.parse();
6613             //            labels = parser.getCharStateLabels();
6614             //            if ( labels.length != 7 ) {
6615             //                return false;
6616             //            }
6617             //            if ( !labels[ 0 ].equals( "14-3-3" ) ) {
6618             //                return false;
6619             //            }
6620             //            if ( !labels[ 1 ].equals( "2-Hacid_dh" ) ) {
6621             //                return false;
6622             //            }
6623             //            if ( !labels[ 2 ].equals( "2-Hacid_dh_C" ) ) {
6624             //                return false;
6625             //            }
6626             //            if ( !labels[ 3 ].equals( "2-oxoacid_dh" ) ) {
6627             //                return false;
6628             //            }
6629             //            if ( !labels[ 4 ].equals( "2OG-FeII_Oxy" ) ) {
6630             //                return false;
6631             //            }
6632             //            if ( !labels[ 5 ].equals( "3-HAO" ) ) {
6633             //                return false;
6634             //            }
6635             //            if ( !labels[ 6 ].equals( "3_5_exonuc" ) ) {
6636             //                return false;
6637             //            }
6638         }
6639         catch ( final Exception e ) {
6640             e.printStackTrace( System.out );
6641             return false;
6642         }
6643         return true;
6644     }
6645
6646     private static boolean testNexusTreeParsing() {
6647         try {
6648             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
6649             final NexusPhylogeniesParser parser = new NexusPhylogeniesParser();
6650             Phylogeny[] phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_1.nex", parser );
6651             if ( phylogenies.length != 1 ) {
6652                 return false;
6653             }
6654             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 25 ) {
6655                 return false;
6656             }
6657             if ( !phylogenies[ 0 ].getName().equals( "" ) ) {
6658                 return false;
6659             }
6660             phylogenies = null;
6661             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_2.nex", parser );
6662             if ( phylogenies.length != 1 ) {
6663                 return false;
6664             }
6665             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 10 ) {
6666                 return false;
6667             }
6668             if ( !phylogenies[ 0 ].getName().equals( "name" ) ) {
6669                 return false;
6670             }
6671             phylogenies = null;
6672             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_3.nex", parser );
6673             if ( phylogenies.length != 1 ) {
6674                 return false;
6675             }
6676             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 3 ) {
6677                 return false;
6678             }
6679             if ( !phylogenies[ 0 ].getName().equals( "" ) ) {
6680                 return false;
6681             }
6682             if ( phylogenies[ 0 ].isRooted() ) {
6683                 return false;
6684             }
6685             phylogenies = null;
6686             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_4.nex", parser );
6687             if ( phylogenies.length != 18 ) {
6688                 return false;
6689             }
6690             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 10 ) {
6691                 return false;
6692             }
6693             if ( !phylogenies[ 0 ].getName().equals( "tree 0" ) ) {
6694                 return false;
6695             }
6696             if ( !phylogenies[ 1 ].getName().equals( "tree 1" ) ) {
6697                 return false;
6698             }
6699             if ( phylogenies[ 1 ].getNumberOfExternalNodes() != 10 ) {
6700                 return false;
6701             }
6702             if ( phylogenies[ 2 ].getNumberOfExternalNodes() != 3 ) {
6703                 return false;
6704             }
6705             if ( phylogenies[ 3 ].getNumberOfExternalNodes() != 3 ) {
6706                 return false;
6707             }
6708             if ( phylogenies[ 4 ].getNumberOfExternalNodes() != 3 ) {
6709                 return false;
6710             }
6711             if ( phylogenies[ 5 ].getNumberOfExternalNodes() != 3 ) {
6712                 return false;
6713             }
6714             if ( phylogenies[ 6 ].getNumberOfExternalNodes() != 3 ) {
6715                 return false;
6716             }
6717             if ( phylogenies[ 7 ].getNumberOfExternalNodes() != 3 ) {
6718                 return false;
6719             }
6720             if ( !phylogenies[ 8 ].getName().equals( "tree 8" ) ) {
6721                 return false;
6722             }
6723             if ( phylogenies[ 8 ].isRooted() ) {
6724                 return false;
6725             }
6726             if ( phylogenies[ 8 ].getNumberOfExternalNodes() != 3 ) {
6727                 return false;
6728             }
6729             if ( !phylogenies[ 9 ].getName().equals( "tree 9" ) ) {
6730                 return false;
6731             }
6732             if ( !phylogenies[ 9 ].isRooted() ) {
6733                 return false;
6734             }
6735             if ( phylogenies[ 9 ].getNumberOfExternalNodes() != 3 ) {
6736                 return false;
6737             }
6738             if ( !phylogenies[ 10 ].getName().equals( "tree 10" ) ) {
6739                 return false;
6740             }
6741             if ( !phylogenies[ 10 ].isRooted() ) {
6742                 return false;
6743             }
6744             if ( phylogenies[ 10 ].getNumberOfExternalNodes() != 3 ) {
6745                 return false;
6746             }
6747             if ( !phylogenies[ 11 ].getName().equals( "tree 11" ) ) {
6748                 return false;
6749             }
6750             if ( phylogenies[ 11 ].isRooted() ) {
6751                 return false;
6752             }
6753             if ( phylogenies[ 11 ].getNumberOfExternalNodes() != 3 ) {
6754                 return false;
6755             }
6756             if ( !phylogenies[ 12 ].getName().equals( "tree 12" ) ) {
6757                 return false;
6758             }
6759             if ( !phylogenies[ 12 ].isRooted() ) {
6760                 return false;
6761             }
6762             if ( phylogenies[ 12 ].getNumberOfExternalNodes() != 3 ) {
6763                 return false;
6764             }
6765             if ( !phylogenies[ 13 ].getName().equals( "tree 13" ) ) {
6766                 return false;
6767             }
6768             if ( !phylogenies[ 13 ].isRooted() ) {
6769                 return false;
6770             }
6771             if ( phylogenies[ 13 ].getNumberOfExternalNodes() != 3 ) {
6772                 return false;
6773             }
6774             if ( !phylogenies[ 14 ].getName().equals( "tree 14" ) ) {
6775                 return false;
6776             }
6777             if ( !phylogenies[ 14 ].isRooted() ) {
6778                 return false;
6779             }
6780             if ( phylogenies[ 14 ].getNumberOfExternalNodes() != 10 ) {
6781                 return false;
6782             }
6783             if ( !phylogenies[ 15 ].getName().equals( "tree 15" ) ) {
6784                 return false;
6785             }
6786             if ( phylogenies[ 15 ].isRooted() ) {
6787                 return false;
6788             }
6789             if ( phylogenies[ 15 ].getNumberOfExternalNodes() != 10 ) {
6790                 return false;
6791             }
6792             if ( !phylogenies[ 16 ].getName().equals( "tree 16" ) ) {
6793                 return false;
6794             }
6795             if ( !phylogenies[ 16 ].isRooted() ) {
6796                 return false;
6797             }
6798             if ( phylogenies[ 16 ].getNumberOfExternalNodes() != 10 ) {
6799                 return false;
6800             }
6801             if ( !phylogenies[ 17 ].getName().equals( "tree 17" ) ) {
6802                 return false;
6803             }
6804             if ( phylogenies[ 17 ].isRooted() ) {
6805                 return false;
6806             }
6807             if ( phylogenies[ 17 ].getNumberOfExternalNodes() != 10 ) {
6808                 return false;
6809             }
6810             final NexusPhylogeniesParser p2 = new NexusPhylogeniesParser();
6811             phylogenies = null;
6812             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "S15613.nex", p2 );
6813             if ( phylogenies.length != 9 ) {
6814                 return false;
6815             }
6816             if ( !isEqual( 0.48039661496919533, phylogenies[ 0 ].getNode( "Diadocidia_spinosula" )
6817                     .getDistanceToParent() ) ) {
6818                 return false;
6819             }
6820             if ( !isEqual( 0.3959796191512233, phylogenies[ 0 ].getNode( "Diadocidia_stanfordensis" )
6821                     .getDistanceToParent() ) ) {
6822                 return false;
6823             }
6824             if ( !phylogenies[ 0 ].getName().equals( "Family Diadocidiidae MLT (Imported_tree_0)" ) ) {
6825                 return false;
6826             }
6827             if ( !phylogenies[ 1 ].getName().equals( "Family Diadocidiidae BAT (con_50_majrule)" ) ) {
6828                 return false;
6829             }
6830             if ( !phylogenies[ 2 ].getName().equals( "Family Diadocidiidae BAT (con_50_majrule)" ) ) {
6831                 return false;
6832             }
6833             if ( !isEqual( 0.065284, phylogenies[ 7 ].getNode( "Bradysia_amoena" ).getDistanceToParent() ) ) {
6834                 return false;
6835             }
6836             if ( !isEqual( 0.065284, phylogenies[ 8 ].getNode( "Bradysia_amoena" ).getDistanceToParent() ) ) {
6837                 return false;
6838             }
6839         }
6840         catch ( final Exception e ) {
6841             e.printStackTrace( System.out );
6842             return false;
6843         }
6844         return true;
6845     }
6846
6847     private static boolean testNexusTreeParsingIterating() {
6848         try {
6849             final NexusPhylogeniesParser p = new NexusPhylogeniesParser();
6850             p.setSource( Test.PATH_TO_TEST_DATA + "nexus_test_1.nex" );
6851             if ( !p.hasNext() ) {
6852                 return false;
6853             }
6854             Phylogeny phy = p.next();
6855             if ( phy == null ) {
6856                 return false;
6857             }
6858             if ( phy.getNumberOfExternalNodes() != 25 ) {
6859                 return false;
6860             }
6861             if ( !phy.getName().equals( "" ) ) {
6862                 return false;
6863             }
6864             if ( p.hasNext() ) {
6865                 return false;
6866             }
6867             phy = p.next();
6868             if ( phy != null ) {
6869                 return false;
6870             }
6871             //
6872             p.reset();
6873             if ( !p.hasNext() ) {
6874                 return false;
6875             }
6876             phy = p.next();
6877             if ( phy == null ) {
6878                 return false;
6879             }
6880             if ( phy.getNumberOfExternalNodes() != 25 ) {
6881                 return false;
6882             }
6883             if ( !phy.getName().equals( "" ) ) {
6884                 return false;
6885             }
6886             if ( p.hasNext() ) {
6887                 return false;
6888             }
6889             phy = p.next();
6890             if ( phy != null ) {
6891                 return false;
6892             }
6893             ////
6894             p.setSource( Test.PATH_TO_TEST_DATA + "nexus_test_2.nex" );
6895             if ( !p.hasNext() ) {
6896                 return false;
6897             }
6898             phy = p.next();
6899             if ( phy == null ) {
6900                 return false;
6901             }
6902             if ( phy.getNumberOfExternalNodes() != 10 ) {
6903                 return false;
6904             }
6905             if ( !phy.getName().equals( "name" ) ) {
6906                 return false;
6907             }
6908             if ( p.hasNext() ) {
6909                 return false;
6910             }
6911             phy = p.next();
6912             if ( phy != null ) {
6913                 return false;
6914             }
6915             //
6916             p.reset();
6917             if ( !p.hasNext() ) {
6918                 return false;
6919             }
6920             phy = p.next();
6921             if ( phy == null ) {
6922                 return false;
6923             }
6924             if ( phy.getNumberOfExternalNodes() != 10 ) {
6925                 return false;
6926             }
6927             if ( !phy.getName().equals( "name" ) ) {
6928                 return false;
6929             }
6930             if ( p.hasNext() ) {
6931                 return false;
6932             }
6933             phy = p.next();
6934             if ( phy != null ) {
6935                 return false;
6936             }
6937             //
6938             p.setSource( Test.PATH_TO_TEST_DATA + "nexus_test_3.nex" );
6939             if ( !p.hasNext() ) {
6940                 return false;
6941             }
6942             phy = p.next();
6943             if ( phy == null ) {
6944                 return false;
6945             }
6946             if ( phy.getNumberOfExternalNodes() != 3 ) {
6947                 return false;
6948             }
6949             if ( !phy.getName().equals( "" ) ) {
6950                 return false;
6951             }
6952             if ( phy.isRooted() ) {
6953                 return false;
6954             }
6955             if ( p.hasNext() ) {
6956                 return false;
6957             }
6958             phy = p.next();
6959             if ( phy != null ) {
6960                 return false;
6961             }
6962             //
6963             p.reset();
6964             if ( !p.hasNext() ) {
6965                 return false;
6966             }
6967             phy = p.next();
6968             if ( phy == null ) {
6969                 return false;
6970             }
6971             if ( phy.getNumberOfExternalNodes() != 3 ) {
6972                 return false;
6973             }
6974             if ( !phy.getName().equals( "" ) ) {
6975                 return false;
6976             }
6977             if ( p.hasNext() ) {
6978                 return false;
6979             }
6980             phy = p.next();
6981             if ( phy != null ) {
6982                 return false;
6983             }
6984             //
6985             p.setSource( Test.PATH_TO_TEST_DATA + "nexus_test_4_1.nex" );
6986             if ( !p.hasNext() ) {
6987                 return false;
6988             }
6989             //0
6990             phy = p.next();
6991             if ( phy == null ) {
6992                 return false;
6993             }
6994             if ( phy.getNumberOfExternalNodes() != 10 ) {
6995                 return false;
6996             }
6997             if ( !phy.getName().equals( "tree 0" ) ) {
6998                 return false;
6999             }
7000             //1
7001             if ( !p.hasNext() ) {
7002                 return false;
7003             }
7004             phy = p.next();
7005             if ( phy == null ) {
7006                 return false;
7007             }
7008             if ( phy.getNumberOfExternalNodes() != 10 ) {
7009                 return false;
7010             }
7011             if ( !phy.getName().equals( "tree 1" ) ) {
7012                 return false;
7013             }
7014             //2
7015             if ( !p.hasNext() ) {
7016                 return false;
7017             }
7018             phy = p.next();
7019             if ( phy == null ) {
7020                 return false;
7021             }
7022             if ( phy.getNumberOfExternalNodes() != 3 ) {
7023                 System.out.println( phy.toString() );
7024                 return false;
7025             }
7026             if ( !phy.getName().equals( "" ) ) {
7027                 return false;
7028             }
7029             if ( phy.isRooted() ) {
7030                 return false;
7031             }
7032             //3
7033             if ( !p.hasNext() ) {
7034                 return false;
7035             }
7036             phy = p.next();
7037             if ( phy == null ) {
7038                 return false;
7039             }
7040             if ( phy.getNumberOfExternalNodes() != 4 ) {
7041                 return false;
7042             }
7043             if ( !phy.getName().equals( "" ) ) {
7044                 return false;
7045             }
7046             if ( !phy.isRooted() ) {
7047                 return false;
7048             }
7049             //4
7050             if ( !p.hasNext() ) {
7051                 return false;
7052             }
7053             phy = p.next();
7054             if ( phy == null ) {
7055                 return false;
7056             }
7057             if ( phy.getNumberOfExternalNodes() != 5 ) {
7058                 System.out.println( phy.getNumberOfExternalNodes() );
7059                 return false;
7060             }
7061             if ( !phy.getName().equals( "" ) ) {
7062                 return false;
7063             }
7064             if ( !phy.isRooted() ) {
7065                 return false;
7066             }
7067             //5
7068             if ( !p.hasNext() ) {
7069                 return false;
7070             }
7071             phy = p.next();
7072             if ( phy == null ) {
7073                 return false;
7074             }
7075             if ( phy.getNumberOfExternalNodes() != 3 ) {
7076                 return false;
7077             }
7078             if ( !phy.getName().equals( "" ) ) {
7079                 return false;
7080             }
7081             if ( phy.isRooted() ) {
7082                 return false;
7083             }
7084             //6
7085             if ( !p.hasNext() ) {
7086                 return false;
7087             }
7088             phy = p.next();
7089             if ( phy == null ) {
7090                 return false;
7091             }
7092             if ( phy.getNumberOfExternalNodes() != 2 ) {
7093                 return false;
7094             }
7095             if ( !phy.getName().equals( "" ) ) {
7096                 return false;
7097             }
7098             if ( !phy.isRooted() ) {
7099                 return false;
7100             }
7101             //7
7102             if ( !p.hasNext() ) {
7103                 return false;
7104             }
7105             phy = p.next();
7106             if ( phy.getNumberOfExternalNodes() != 3 ) {
7107                 return false;
7108             }
7109             if ( !phy.toNewHampshire().equals( "((a,b),c);" ) ) {
7110                 return false;
7111             }
7112             if ( !phy.isRooted() ) {
7113                 return false;
7114             }
7115             //8
7116             if ( !p.hasNext() ) {
7117                 return false;
7118             }
7119             phy = p.next();
7120             if ( phy.getNumberOfExternalNodes() != 3 ) {
7121                 return false;
7122             }
7123             if ( !phy.toNewHampshire().equals( "((AA,BB),CC);" ) ) {
7124                 return false;
7125             }
7126             if ( !phy.getName().equals( "tree 8" ) ) {
7127                 return false;
7128             }
7129             //9
7130             if ( !p.hasNext() ) {
7131                 return false;
7132             }
7133             phy = p.next();
7134             if ( phy.getNumberOfExternalNodes() != 3 ) {
7135                 return false;
7136             }
7137             if ( !phy.toNewHampshire().equals( "((a,b),cc);" ) ) {
7138                 return false;
7139             }
7140             if ( !phy.getName().equals( "tree 9" ) ) {
7141                 return false;
7142             }
7143             //10
7144             if ( !p.hasNext() ) {
7145                 return false;
7146             }
7147             phy = p.next();
7148             if ( phy.getNumberOfExternalNodes() != 3 ) {
7149                 return false;
7150             }
7151             if ( !phy.toNewHampshire().equals( "((a,b),c);" ) ) {
7152                 return false;
7153             }
7154             if ( !phy.getName().equals( "tree 10" ) ) {
7155                 return false;
7156             }
7157             if ( !phy.isRooted() ) {
7158                 return false;
7159             }
7160             //11
7161             if ( !p.hasNext() ) {
7162                 return false;
7163             }
7164             phy = p.next();
7165             if ( phy.getNumberOfExternalNodes() != 3 ) {
7166                 return false;
7167             }
7168             if ( !phy.toNewHampshire().equals( "((1,2),3);" ) ) {
7169                 return false;
7170             }
7171             if ( !phy.getName().equals( "tree 11" ) ) {
7172                 return false;
7173             }
7174             if ( phy.isRooted() ) {
7175                 return false;
7176             }
7177             //12
7178             if ( !p.hasNext() ) {
7179                 return false;
7180             }
7181             phy = p.next();
7182             if ( phy.getNumberOfExternalNodes() != 3 ) {
7183                 return false;
7184             }
7185             if ( !phy.toNewHampshire().equals( "((aa,bb),cc);" ) ) {
7186                 return false;
7187             }
7188             if ( !phy.getName().equals( "tree 12" ) ) {
7189                 return false;
7190             }
7191             if ( !phy.isRooted() ) {
7192                 return false;
7193             }
7194             //13
7195             if ( !p.hasNext() ) {
7196                 return false;
7197             }
7198             phy = p.next();
7199             if ( phy.getNumberOfExternalNodes() != 3 ) {
7200                 return false;
7201             }
7202             if ( !phy.toNewHampshire().equals( "((a,b),c);" ) ) {
7203                 return false;
7204             }
7205             if ( !phy.getName().equals( "tree 13" ) ) {
7206                 return false;
7207             }
7208             if ( !phy.isRooted() ) {
7209                 return false;
7210             }
7211             //14
7212             if ( !p.hasNext() ) {
7213                 return false;
7214             }
7215             phy = p.next();
7216             if ( phy.getNumberOfExternalNodes() != 10 ) {
7217                 System.out.println( phy.getNumberOfExternalNodes() );
7218                 return false;
7219             }
7220             if ( !phy
7221                     .toNewHampshire()
7222                     .equals( "(1:0.212481,8:0.297838,(9:0.222729,((6:0.201563,7:0.194547):0.282035,(4:1.146091,(3:1.008881,(10:0.384105,(2:0.235682,5:0.353432):0.32368):0.103875):0.41354):0.254687):0.095341):0.079254):0.0;" ) ) {
7223                 System.out.println( phy.toNewHampshire() );
7224                 return false;
7225             }
7226             if ( !phy.getName().equals( "tree 14" ) ) {
7227                 return false;
7228             }
7229             if ( !phy.isRooted() ) {
7230                 return false;
7231             }
7232             //15
7233             if ( !p.hasNext() ) {
7234                 return false;
7235             }
7236             phy = p.next();
7237             if ( phy.getNumberOfExternalNodes() != 10 ) {
7238                 System.out.println( phy.getNumberOfExternalNodes() );
7239                 return false;
7240             }
7241             if ( !phy
7242                     .toNewHampshire()
7243                     .equals( "(1:0.212481,8:0.297838,(9:0.222729,((6:0.201563,7:0.194547):0.282035,(4:1.146091,(3:1.008881,(10:0.384105,(2:0.235682,5:0.353432):0.32368):0.103875):0.41354):0.254687):0.095341):0.079254):0.0;" ) ) {
7244                 System.out.println( phy.toNewHampshire() );
7245                 return false;
7246             }
7247             if ( !phy.getName().equals( "tree 15" ) ) {
7248                 return false;
7249             }
7250             if ( phy.isRooted() ) {
7251                 return false;
7252             }
7253             //16
7254             if ( !p.hasNext() ) {
7255                 return false;
7256             }
7257             phy = p.next();
7258             if ( phy.getNumberOfExternalNodes() != 10 ) {
7259                 System.out.println( phy.getNumberOfExternalNodes() );
7260                 return false;
7261             }
7262             if ( !phy
7263                     .toNewHampshire()
7264                     .equals( "(1:0.212481,8:0.297838,(9:0.222729,((6:0.201563,7:0.194547):0.282035,(4:1.146091,(3:1.008881,(10:0.384105,(2:0.235682,5:0.353432):0.32368):0.103875):0.41354):0.254687):0.095341):0.079254):0.0;" ) ) {
7265                 System.out.println( phy.toNewHampshire() );
7266                 return false;
7267             }
7268             if ( !phy.getName().equals( "tree 16" ) ) {
7269                 return false;
7270             }
7271             if ( !phy.isRooted() ) {
7272                 return false;
7273             }
7274             //17
7275             if ( !p.hasNext() ) {
7276                 return false;
7277             }
7278             phy = p.next();
7279             if ( phy.getNumberOfExternalNodes() != 10 ) {
7280                 System.out.println( phy.getNumberOfExternalNodes() );
7281                 return false;
7282             }
7283             if ( !phy
7284                     .toNewHampshire()
7285                     .equals( "(1:0.212481,8:0.297838,(9:0.222729,((6:0.201563,7:0.194547):0.282035,(4:1.146091,(3:1.008881,(10:0.384105,(2:0.235682,5:0.353432):0.32368):0.103875):0.41354):0.254687):0.095341):0.079254):0.0;" ) ) {
7286                 System.out.println( phy.toNewHampshire() );
7287                 return false;
7288             }
7289             if ( !phy.getName().equals( "tree 17" ) ) {
7290                 return false;
7291             }
7292             if ( phy.isRooted() ) {
7293                 return false;
7294             }
7295             //
7296             if ( p.hasNext() ) {
7297                 return false;
7298             }
7299             phy = p.next();
7300             if ( phy != null ) {
7301                 return false;
7302             }
7303             p.reset();
7304             //0
7305             if ( !p.hasNext() ) {
7306                 return false;
7307             }
7308             phy = p.next();
7309             if ( phy == null ) {
7310                 return false;
7311             }
7312             if ( phy.getNumberOfExternalNodes() != 10 ) {
7313                 return false;
7314             }
7315             if ( !phy.getName().equals( "tree 0" ) ) {
7316                 return false;
7317             }
7318             //1
7319             if ( !p.hasNext() ) {
7320                 return false;
7321             }
7322             phy = p.next();
7323             if ( phy == null ) {
7324                 return false;
7325             }
7326             if ( phy.getNumberOfExternalNodes() != 10 ) {
7327                 return false;
7328             }
7329             if ( !phy.getName().equals( "tree 1" ) ) {
7330                 return false;
7331             }
7332             //2
7333             if ( !p.hasNext() ) {
7334                 return false;
7335             }
7336             phy = p.next();
7337             if ( phy == null ) {
7338                 return false;
7339             }
7340             if ( phy.getNumberOfExternalNodes() != 3 ) {
7341                 return false;
7342             }
7343             if ( !phy.getName().equals( "" ) ) {
7344                 return false;
7345             }
7346             if ( phy.isRooted() ) {
7347                 return false;
7348             }
7349             //3
7350             if ( !p.hasNext() ) {
7351                 return false;
7352             }
7353             phy = p.next();
7354             if ( phy == null ) {
7355                 return false;
7356             }
7357             if ( phy.getNumberOfExternalNodes() != 4 ) {
7358                 return false;
7359             }
7360             if ( !phy.getName().equals( "" ) ) {
7361                 return false;
7362             }
7363             if ( !phy.isRooted() ) {
7364                 return false;
7365             }
7366             //4
7367             if ( !p.hasNext() ) {
7368                 return false;
7369             }
7370             phy = p.next();
7371             if ( phy == null ) {
7372                 return false;
7373             }
7374             if ( phy.getNumberOfExternalNodes() != 5 ) {
7375                 System.out.println( phy.getNumberOfExternalNodes() );
7376                 return false;
7377             }
7378             if ( !phy.getName().equals( "" ) ) {
7379                 return false;
7380             }
7381             if ( !phy.isRooted() ) {
7382                 return false;
7383             }
7384             //5
7385             if ( !p.hasNext() ) {
7386                 return false;
7387             }
7388             phy = p.next();
7389             if ( phy == null ) {
7390                 return false;
7391             }
7392             if ( phy.getNumberOfExternalNodes() != 3 ) {
7393                 return false;
7394             }
7395             if ( !phy.getName().equals( "" ) ) {
7396                 return false;
7397             }
7398             if ( phy.isRooted() ) {
7399                 return false;
7400             }
7401             //
7402             final NexusPhylogeniesParser p2 = new NexusPhylogeniesParser();
7403             p2.setSource( Test.PATH_TO_TEST_DATA + "S15613.nex" );
7404             // 0
7405             if ( !p2.hasNext() ) {
7406                 return false;
7407             }
7408             phy = p2.next();
7409             if ( !isEqual( 0.48039661496919533, phy.getNode( "Diadocidia_spinosula" ).getDistanceToParent() ) ) {
7410                 return false;
7411             }
7412             if ( !isEqual( 0.3959796191512233, phy.getNode( "Diadocidia_stanfordensis" ).getDistanceToParent() ) ) {
7413                 return false;
7414             }
7415             // 1
7416             if ( !p2.hasNext() ) {
7417                 return false;
7418             }
7419             phy = p2.next();
7420             // 2
7421             if ( !p2.hasNext() ) {
7422                 return false;
7423             }
7424             phy = p2.next();
7425             // 3
7426             if ( !p2.hasNext() ) {
7427                 return false;
7428             }
7429             phy = p2.next();
7430             // 4
7431             if ( !p2.hasNext() ) {
7432                 return false;
7433             }
7434             phy = p2.next();
7435             // 5
7436             if ( !p2.hasNext() ) {
7437                 return false;
7438             }
7439             phy = p2.next();
7440             // 6
7441             if ( !p2.hasNext() ) {
7442                 return false;
7443             }
7444             phy = p2.next();
7445             // 7
7446             if ( !p2.hasNext() ) {
7447                 return false;
7448             }
7449             phy = p2.next();
7450             // 8
7451             if ( !p2.hasNext() ) {
7452                 return false;
7453             }
7454             phy = p2.next();
7455             if ( !isEqual( 0.065284, phy.getNode( "Bradysia_amoena" ).getDistanceToParent() ) ) {
7456                 return false;
7457             }
7458             if ( p2.hasNext() ) {
7459                 return false;
7460             }
7461             phy = p2.next();
7462             if ( phy != null ) {
7463                 return false;
7464             }
7465             // 0
7466             p2.reset();
7467             if ( !p2.hasNext() ) {
7468                 return false;
7469             }
7470             phy = p2.next();
7471             if ( !isEqual( 0.48039661496919533, phy.getNode( "Diadocidia_spinosula" ).getDistanceToParent() ) ) {
7472                 return false;
7473             }
7474             if ( !isEqual( 0.3959796191512233, phy.getNode( "Diadocidia_stanfordensis" ).getDistanceToParent() ) ) {
7475                 return false;
7476             }
7477         }
7478         catch ( final Exception e ) {
7479             e.printStackTrace( System.out );
7480             return false;
7481         }
7482         return true;
7483     }
7484
7485     private static boolean testNexusTreeParsingTranslating() {
7486         try {
7487             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
7488             final NexusPhylogeniesParser parser = new NexusPhylogeniesParser();
7489             Phylogeny[] phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_5.nex", parser );
7490             if ( phylogenies.length != 1 ) {
7491                 return false;
7492             }
7493             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 3 ) {
7494                 return false;
7495             }
7496             if ( !phylogenies[ 0 ].getName().equals( "Tree0" ) ) {
7497                 return false;
7498             }
7499             if ( !phylogenies[ 0 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7500                 return false;
7501             }
7502             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7503                 return false;
7504             }
7505             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7506                     .equals( "Aranaeus" ) ) {
7507                 return false;
7508             }
7509             phylogenies = null;
7510             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_6.nex", parser );
7511             if ( phylogenies.length != 3 ) {
7512                 return false;
7513             }
7514             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 3 ) {
7515                 return false;
7516             }
7517             if ( !phylogenies[ 0 ].getName().equals( "Tree0" ) ) {
7518                 return false;
7519             }
7520             if ( phylogenies[ 0 ].isRooted() ) {
7521                 return false;
7522             }
7523             if ( !phylogenies[ 0 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7524                 return false;
7525             }
7526             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7527                 return false;
7528             }
7529             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7530                     .equals( "Aranaeus" ) ) {
7531                 return false;
7532             }
7533             if ( phylogenies[ 1 ].getNumberOfExternalNodes() != 3 ) {
7534                 return false;
7535             }
7536             if ( !phylogenies[ 1 ].getName().equals( "Tree1" ) ) {
7537                 return false;
7538             }
7539             if ( phylogenies[ 1 ].isRooted() ) {
7540                 return false;
7541             }
7542             if ( !phylogenies[ 1 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7543                 return false;
7544             }
7545             if ( !phylogenies[ 1 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7546                 return false;
7547             }
7548             if ( !phylogenies[ 1 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7549                     .equals( "Aranaeus" ) ) {
7550                 return false;
7551             }
7552             if ( phylogenies[ 2 ].getNumberOfExternalNodes() != 3 ) {
7553                 return false;
7554             }
7555             if ( !phylogenies[ 2 ].getName().equals( "Tree2" ) ) {
7556                 return false;
7557             }
7558             if ( !phylogenies[ 2 ].isRooted() ) {
7559                 return false;
7560             }
7561             if ( !phylogenies[ 2 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7562                 return false;
7563             }
7564             if ( !phylogenies[ 2 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7565                 return false;
7566             }
7567             if ( !phylogenies[ 2 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7568                     .equals( "Aranaeus" ) ) {
7569                 return false;
7570             }
7571             phylogenies = null;
7572             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "nexus_test_7.nex", parser );
7573             if ( phylogenies.length != 3 ) {
7574                 return false;
7575             }
7576             if ( phylogenies[ 0 ].getNumberOfExternalNodes() != 3 ) {
7577                 return false;
7578             }
7579             if ( !phylogenies[ 0 ].getName().equals( "Tree0" ) ) {
7580                 return false;
7581             }
7582             if ( phylogenies[ 0 ].isRooted() ) {
7583                 return false;
7584             }
7585             if ( !phylogenies[ 0 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7586                 return false;
7587             }
7588             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7589                 return false;
7590             }
7591             if ( !phylogenies[ 0 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7592                     .equals( "Aranaeus" ) ) {
7593                 return false;
7594             }
7595             if ( phylogenies[ 1 ].getNumberOfExternalNodes() != 3 ) {
7596                 return false;
7597             }
7598             if ( !phylogenies[ 1 ].getName().equals( "Tree1" ) ) {
7599                 return false;
7600             }
7601             if ( phylogenies[ 1 ].isRooted() ) {
7602                 return false;
7603             }
7604             if ( !phylogenies[ 1 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7605                 return false;
7606             }
7607             if ( !phylogenies[ 1 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7608                 return false;
7609             }
7610             if ( !phylogenies[ 1 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7611                     .equals( "Aranaeus" ) ) {
7612                 return false;
7613             }
7614             if ( phylogenies[ 2 ].getNumberOfExternalNodes() != 3 ) {
7615                 return false;
7616             }
7617             if ( !phylogenies[ 2 ].getName().equals( "Tree2" ) ) {
7618                 return false;
7619             }
7620             if ( !phylogenies[ 2 ].isRooted() ) {
7621                 return false;
7622             }
7623             if ( !phylogenies[ 2 ].getFirstExternalNode().getName().equals( "Scarabaeus" ) ) {
7624                 return false;
7625             }
7626             if ( !phylogenies[ 2 ].getFirstExternalNode().getNextExternalNode().getName().equals( "Drosophila" ) ) {
7627                 return false;
7628             }
7629             if ( !phylogenies[ 2 ].getFirstExternalNode().getNextExternalNode().getNextExternalNode().getName()
7630                     .equals( "Aranaeus" ) ) {
7631                 return false;
7632             }
7633             phylogenies = factory.create( Test.PATH_TO_TEST_DATA + "S14117.nex", parser );
7634             if ( phylogenies.length != 3 ) {
7635                 return false;
7636             }
7637             if ( !isEqual( phylogenies[ 2 ].getNode( "Aloysia lycioides 251-76-02169" ).getDistanceToParent(),
7638                            0.00100049 ) ) {
7639                 return false;
7640             }
7641         }
7642         catch ( final Exception e ) {
7643             e.printStackTrace( System.out );
7644             return false;
7645         }
7646         return true;
7647     }
7648
7649     private static boolean testNHParsing() {
7650         try {
7651             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
7652             final Phylogeny p1 = factory.create( "(A,B1)", new NHXParser() )[ 0 ];
7653             if ( !p1.toNewHampshireX().equals( "(A,B1)" ) ) {
7654                 return false;
7655             }
7656             final NHXParser nhxp = new NHXParser();
7657             nhxp.setTaxonomyExtraction( NHXParser.TAXONOMY_EXTRACTION.NO );
7658             nhxp.setReplaceUnderscores( true );
7659             final Phylogeny uc0 = factory.create( "(A__A_,_B_B)", nhxp )[ 0 ];
7660             if ( !uc0.getRoot().getChildNode( 0 ).getName().equals( "A A " ) ) {
7661                 return false;
7662             }
7663             if ( !uc0.getRoot().getChildNode( 1 ).getName().equals( " B B" ) ) {
7664                 return false;
7665             }
7666             final Phylogeny p1b = factory
7667                     .create( "   \n  \t  \b   \r \f   ; (  \n  \t  \b   \r \f; A ;  \n  \t  \b   \r \f,  \n  \t  \b   \r \f; B ;   \n  \t  \b   \r \f 1  \n  \t  \b   \r \f ;  \n  \t  \b   \r \f );;;;; \n  \t  \b   \r \f;;;  \n  \t  \b   \r \f ",
7668                              new NHXParser() )[ 0 ];
7669             if ( !p1b.toNewHampshireX().equals( "(';A;',';B;1;')" ) ) {
7670                 return false;
7671             }
7672             if ( !p1b.toNewHampshire().equals( "(';A;',';B;1;');" ) ) {
7673                 return false;
7674             }
7675             final Phylogeny p2 = factory.create( new StringBuffer( "(A,B2)" ), new NHXParser() )[ 0 ];
7676             final Phylogeny p3 = factory.create( new char[] { '(', 'A', ',', 'B', '3', ')' }, new NHXParser() )[ 0 ];
7677             final Phylogeny p4 = factory.create( "(A,B4);", new NHXParser() )[ 0 ];
7678             final Phylogeny p5 = factory.create( new StringBuffer( "(A,B5);" ), new NHXParser() )[ 0 ];
7679             final Phylogeny[] p7 = factory.create( "(A,B7);(C,D7)", new NHXParser() );
7680             final Phylogeny[] p8 = factory.create( "(A,B8) (C,D8)", new NHXParser() );
7681             final Phylogeny[] p9 = factory.create( "(A,B9)\n(C,D9)", new NHXParser() );
7682             final Phylogeny[] p10 = factory.create( "(A,B10);(C,D10);", new NHXParser() );
7683             final Phylogeny[] p11 = factory.create( "(A,B11);(C,D11) (E,F11)\t(G,H11)", new NHXParser() );
7684             final Phylogeny[] p12 = factory.create( "(A,B12) (C,D12) (E,F12) (G,H12)", new NHXParser() );
7685             final Phylogeny[] p13 = factory.create( " ; (;A; , ; B ; 1  3 ; \n)\t ( \n ;"
7686                                                             + " C ; ,; D;13;);;;;;;(;E;,;F;13 ;) ; "
7687                                                             + "; ; ( \t\n\r\b; G ;, ;H ;1 3; )  ;  ;   ;",
7688                                                     new NHXParser() );
7689             if ( !p13[ 0 ].toNewHampshireX().equals( "(';A;',';B;13;')" ) ) {
7690                 return false;
7691             }
7692             if ( !p13[ 1 ].toNewHampshireX().equals( "(';C;',';D;13;')" ) ) {
7693                 return false;
7694             }
7695             if ( !p13[ 2 ].toNewHampshireX().equals( "(';E;',';F;13;')" ) ) {
7696                 return false;
7697             }
7698             if ( !p13[ 3 ].toNewHampshireX().equals( "(';G;',';H;13;')" ) ) {
7699                 return false;
7700             }
7701             final Phylogeny[] p14 = factory.create( "(A,B14)ab", new NHXParser() );
7702             final Phylogeny[] p15 = factory.create( "(A,B15)ab;", new NHXParser() );
7703             final String p16_S = "((A,B),C)";
7704             final Phylogeny[] p16 = factory.create( p16_S, new NHXParser() );
7705             if ( p16.length != 1 ) {
7706                 return false;
7707             }
7708             if ( !p16[ 0 ].toNewHampshireX().equals( p16_S ) ) {
7709                 return false;
7710             }
7711             final String p17_S = "(C,(A,B))";
7712             final Phylogeny[] p17 = factory.create( p17_S, new NHXParser() );
7713             if ( p17.length != 1 ) {
7714                 return false;
7715             }
7716             if ( !p17[ 0 ].toNewHampshireX().equals( p17_S ) ) {
7717                 return false;
7718             }
7719             final String p18_S = "((A,B),(C,D))";
7720             final Phylogeny[] p18 = factory.create( p18_S, new NHXParser() );
7721             if ( p18.length != 1 ) {
7722                 return false;
7723             }
7724             if ( !p18[ 0 ].toNewHampshireX().equals( p18_S ) ) {
7725                 return false;
7726             }
7727             final String p19_S = "(((A,B),C),D)";
7728             final Phylogeny[] p19 = factory.create( p19_S, new NHXParser() );
7729             if ( p19.length != 1 ) {
7730                 return false;
7731             }
7732             if ( !p19[ 0 ].toNewHampshireX().equals( p19_S ) ) {
7733                 return false;
7734             }
7735             final String p20_S = "(A,(B,(C,D)))";
7736             final Phylogeny[] p20 = factory.create( p20_S, new NHXParser() );
7737             if ( p20.length != 1 ) {
7738                 return false;
7739             }
7740             if ( !p20[ 0 ].toNewHampshireX().equals( p20_S ) ) {
7741                 return false;
7742             }
7743             final String p21_S = "(A,(B,(C,(D,E))))";
7744             final Phylogeny[] p21 = factory.create( p21_S, new NHXParser() );
7745             if ( p21.length != 1 ) {
7746                 return false;
7747             }
7748             if ( !p21[ 0 ].toNewHampshireX().equals( p21_S ) ) {
7749                 return false;
7750             }
7751             final String p22_S = "((((A,B),C),D),E)";
7752             final Phylogeny[] p22 = factory.create( p22_S, new NHXParser() );
7753             if ( p22.length != 1 ) {
7754                 return false;
7755             }
7756             if ( !p22[ 0 ].toNewHampshireX().equals( p22_S ) ) {
7757                 return false;
7758             }
7759             final String p23_S = "(A,(B,(C,(D,E)de)cde)bcde)abcde";
7760             final Phylogeny[] p23 = factory.create( p23_S, new NHXParser() );
7761             if ( p23.length != 1 ) {
7762                 System.out.println( "xl=" + p23.length );
7763                 System.exit( -1 );
7764                 return false;
7765             }
7766             if ( !p23[ 0 ].toNewHampshireX().equals( p23_S ) ) {
7767                 return false;
7768             }
7769             final String p24_S = "((((A,B)ab,C)abc,D)abcd,E)abcde";
7770             final Phylogeny[] p24 = factory.create( p24_S, new NHXParser() );
7771             if ( p24.length != 1 ) {
7772                 return false;
7773             }
7774             if ( !p24[ 0 ].toNewHampshireX().equals( p24_S ) ) {
7775                 return false;
7776             }
7777             final String p241_S1 = "(A,(B,(C,(D,E)de)cde)bcde)abcde";
7778             final String p241_S2 = "((((A,B)ab,C)abc,D)abcd,E)abcde";
7779             final Phylogeny[] p241 = factory.create( p241_S1 + p241_S2, new NHXParser() );
7780             if ( p241.length != 2 ) {
7781                 return false;
7782             }
7783             if ( !p241[ 0 ].toNewHampshireX().equals( p241_S1 ) ) {
7784                 return false;
7785             }
7786             if ( !p241[ 1 ].toNewHampshireX().equals( p241_S2 ) ) {
7787                 return false;
7788             }
7789             final String p25_S = "((((((((((((((A,B)ab,C)abc,D)abcd,E)"
7790                     + "abcde,(B,(C,(D,E)de)cde)bcde)abcde,(B,((A,(B,(C,(D,"
7791                     + "E)de)cde)bcde)abcde,(D,E)de)cde)bcde)abcde,B)ab,C)"
7792                     + "abc,((((A,B)ab,C)abc,D)abcd,E)abcde)abcd,E)abcde,"
7793                     + "((((A,((((((((A,B)ab,C)abc,((((A,B)ab,C)abc,D)abcd,"
7794                     + "E)abcde)abcd,E)abcde,((((A,B)ab,C)abc,D)abcd,E)abcde)"
7795                     + "ab,C)abc,((((A,B)ab,C)abc,D)abcd,E)abcde)abcd,E)abcde"
7796                     + ")ab,C)abc,D)abcd,E)abcde)ab,C)abc,((((A,B)ab,C)abc,D)" + "abcd,E)abcde)abcd,E)abcde";
7797             final Phylogeny[] p25 = factory.create( p25_S, new NHXParser() );
7798             if ( !p25[ 0 ].toNewHampshireX().equals( p25_S ) ) {
7799                 return false;
7800             }
7801             final String p26_S = "(A,B)ab";
7802             final Phylogeny[] p26 = factory.create( p26_S, new NHXParser() );
7803             if ( !p26[ 0 ].toNewHampshireX().equals( p26_S ) ) {
7804                 return false;
7805             }
7806             final String p27_S = "((((A,B)ab,C)abc,D)abcd,E)abcde";
7807             final Phylogeny[] p27s = factory.create( p27_S, new NHXParser() );
7808             if ( p27s.length != 1 ) {
7809                 System.out.println( "xxl=" + p27s.length );
7810                 System.exit( -1 );
7811                 return false;
7812             }
7813             if ( !p27s[ 0 ].toNewHampshireX().equals( p27_S ) ) {
7814                 System.out.println( p27s[ 0 ].toNewHampshireX() );
7815                 System.exit( -1 );
7816                 return false;
7817             }
7818             final Phylogeny[] p27 = factory.create( new File( Test.PATH_TO_TEST_DATA + "phylogeny27.nhx" ),
7819                                                     new NHXParser() );
7820             if ( p27.length != 1 ) {
7821                 System.out.println( "yl=" + p27.length );
7822                 System.exit( -1 );
7823                 return false;
7824             }
7825             if ( !p27[ 0 ].toNewHampshireX().equals( p27_S ) ) {
7826                 System.out.println( p27[ 0 ].toNewHampshireX() );
7827                 System.exit( -1 );
7828                 return false;
7829             }
7830             final String p28_S1 = "((((A,B)ab,C)abc,D)abcd,E)abcde";
7831             final String p28_S2 = "(A,(B,(C,(D,E)de)cde)bcde)abcde";
7832             final String p28_S3 = "(A,B)ab";
7833             final String p28_S4 = "((((A,B),C),D),;E;)";
7834             final Phylogeny[] p28 = factory.create( new File( Test.PATH_TO_TEST_DATA + "phylogeny28.nhx" ),
7835                                                     new NHXParser() );
7836             if ( !p28[ 0 ].toNewHampshireX().equals( p28_S1 ) ) {
7837                 return false;
7838             }
7839             if ( !p28[ 1 ].toNewHampshireX().equals( p28_S2 ) ) {
7840                 return false;
7841             }
7842             if ( !p28[ 2 ].toNewHampshireX().equals( p28_S3 ) ) {
7843                 return false;
7844             }
7845             if ( !p28[ 3 ].toNewHampshireX().equals( "((((A,B),C),D),';E;')" ) ) {
7846                 return false;
7847             }
7848             if ( p28.length != 4 ) {
7849                 return false;
7850             }
7851             final String p29_S = "((((A:0.01,B:0.684)ab:0.345,C:0.3451)abc:0.3451,D:1.5)abcd:0.134,E:0.32)abcde:0.1345";
7852             final Phylogeny[] p29 = factory.create( p29_S, new NHXParser() );
7853             if ( !p29[ 0 ].toNewHampshireX().equals( p29_S ) ) {
7854                 return false;
7855             }
7856             final String p30_S = "((((A:0.01,B:0.02):0.93,C:0.04):0.05,D:1.4):0.06,E):0.72";
7857             final Phylogeny[] p30 = factory.create( p30_S, new NHXParser() );
7858             if ( !p30[ 0 ].toNewHampshireX().equals( p30_S ) ) {
7859                 return false;
7860             }
7861             final String p32_S = " ;   ;        \n  \t  \b   \f  \r  ;;;;;; ";
7862             final Phylogeny[] p32 = factory.create( p32_S, new NHXParser() );
7863             if ( ( p32.length != 0 ) ) {
7864                 return false;
7865             }
7866             final String p33_S = "A";
7867             final Phylogeny[] p33 = factory.create( p33_S, new NHXParser() );
7868             if ( !p33[ 0 ].toNewHampshireX().equals( p33_S ) ) {
7869                 return false;
7870             }
7871             final String p34_S = "B;";
7872             final Phylogeny[] p34 = factory.create( p34_S, new NHXParser() );
7873             if ( !p34[ 0 ].toNewHampshireX().equals( "B" ) ) {
7874                 return false;
7875             }
7876             final String p35_S = "B:0.2";
7877             final Phylogeny[] p35 = factory.create( p35_S, new NHXParser() );
7878             if ( !p35[ 0 ].toNewHampshireX().equals( p35_S ) ) {
7879                 return false;
7880             }
7881             final String p36_S = "(A)";
7882             final Phylogeny[] p36 = factory.create( p36_S, new NHXParser() );
7883             if ( !p36[ 0 ].toNewHampshireX().equals( p36_S ) ) {
7884                 return false;
7885             }
7886             final String p37_S = "((A))";
7887             final Phylogeny[] p37 = factory.create( p37_S, new NHXParser() );
7888             if ( !p37[ 0 ].toNewHampshireX().equals( p37_S ) ) {
7889                 return false;
7890             }
7891             final String p38_S = "(((((((A:0.2):0.2):0.3):0.4):0.5):0.6):0.7):0.8";
7892             final Phylogeny[] p38 = factory.create( p38_S, new NHXParser() );
7893             if ( !p38[ 0 ].toNewHampshireX().equals( p38_S ) ) {
7894                 return false;
7895             }
7896             final String p39_S = "(((B,((((A:0.2):0.2):0.3):0.4):0.5):0.6):0.7):0.8";
7897             final Phylogeny[] p39 = factory.create( p39_S, new NHXParser() );
7898             if ( !p39[ 0 ].toNewHampshireX().equals( p39_S ) ) {
7899                 return false;
7900             }
7901             final String p40_S = "(A,B,C)";
7902             final Phylogeny[] p40 = factory.create( p40_S, new NHXParser() );
7903             if ( !p40[ 0 ].toNewHampshireX().equals( p40_S ) ) {
7904                 return false;
7905             }
7906             final String p41_S = "(A,B,C,D,E,F,G,H,I,J,K)";
7907             final Phylogeny[] p41 = factory.create( p41_S, new NHXParser() );
7908             if ( !p41[ 0 ].toNewHampshireX().equals( p41_S ) ) {
7909                 return false;
7910             }
7911             final String p42_S = "(A,B,(X,Y,Z),D,E,F,G,H,I,J,K)";
7912             final Phylogeny[] p42 = factory.create( p42_S, new NHXParser() );
7913             if ( !p42[ 0 ].toNewHampshireX().equals( p42_S ) ) {
7914                 return false;
7915             }
7916             final String p43_S = "(A,B,C,(AA,BB,CC,(CCC,DDD,EEE,(FFFF,GGGG)x)y,DD,EE,FF,GG,HH),D,E,(EE,FF),F,G,H,(((((5)4)3)2)1),I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,(XX,(YY)),Y,Z)";
7917             final Phylogeny[] p43 = factory.create( p43_S, new NHXParser() );
7918             if ( !p43[ 0 ].toNewHampshireX().equals( p43_S ) ) {
7919                 return false;
7920             }
7921             final String p44_S = "(((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)))";
7922             final Phylogeny[] p44 = factory.create( p44_S, new NHXParser() );
7923             if ( !p44[ 0 ].toNewHampshireX().equals( p44_S ) ) {
7924                 return false;
7925             }
7926             final String p45_S = "((((((((((A))))))))),(((((((((B))))))))),(((((((((C))))))))))";
7927             final Phylogeny[] p45 = factory.create( p45_S, new NHXParser() );
7928             if ( !p45[ 0 ].toNewHampshireX().equals( p45_S ) ) {
7929                 return false;
7930             }
7931             final String p46_S = "";
7932             final Phylogeny[] p46 = factory.create( p46_S, new NHXParser() );
7933             if ( p46.length != 0 ) {
7934                 return false;
7935             }
7936             final Phylogeny p47 = factory.create( new StringBuffer( "((A,B)ab:2[0.44],C)" ), new NHXParser() )[ 0 ];
7937             if ( !isEqual( 0.44, p47.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue() ) ) {
7938                 return false;
7939             }
7940             final Phylogeny p48 = factory.create( new StringBuffer( "((A,B)ab:2[88],C)" ), new NHXParser() )[ 0 ];
7941             if ( !isEqual( 88, p48.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue() ) ) {
7942                 return false;
7943             }
7944             final Phylogeny p49 = factory
7945                     .create( new StringBuffer( "((A,B)a[comment:a,b;(a)]b:2[0.44][comment(a,b,b);],C)" ),
7946                              new NHXParser() )[ 0 ];
7947             if ( !isEqual( 0.44, p49.getNode( "ab" ).getBranchData().getConfidence( 0 ).getValue() ) ) {
7948                 return false;
7949             }
7950             final Phylogeny p50 = factory.create( new StringBuffer( "((\"A\",B)ab:2[88],C)" ), new NHXParser() )[ 0 ];
7951             if ( p50.getNode( "A" ) == null ) {
7952                 return false;
7953             }
7954             if ( !p50.toNewHampshire( false, NH_CONVERSION_SUPPORT_VALUE_STYLE.IN_SQUARE_BRACKETS )
7955                     .equals( "((A,B)ab:2.0[88],C);" ) ) {
7956                 return false;
7957             }
7958             if ( !p50.toNewHampshire( false, NH_CONVERSION_SUPPORT_VALUE_STYLE.NONE ).equals( "((A,B)ab:2.0,C);" ) ) {
7959                 return false;
7960             }
7961             if ( !p50.toNewHampshire( false, NH_CONVERSION_SUPPORT_VALUE_STYLE.AS_INTERNAL_NODE_NAMES )
7962                     .equals( "((A,B)88:2.0,C);" ) ) {
7963                 return false;
7964             }
7965             final Phylogeny p51 = factory.create( new StringBuffer( "((\"A(A\",B)ab:2[88],C)" ), new NHXParser() )[ 0 ];
7966             if ( p51.getNode( "A(A" ) == null ) {
7967                 return false;
7968             }
7969             final Phylogeny p52 = factory.create( new StringBuffer( "(('A(A',B)ab:2[88],C)" ), new NHXParser() )[ 0 ];
7970             if ( p52.getNode( "A(A" ) == null ) {
7971                 return false;
7972             }
7973             final Phylogeny p53 = factory
7974                     .create( new StringBuffer( "(('A(A',\"B (x (a' ,b) f(x);\"[com])[ment]ab:2[88],C)" ),
7975                              new NHXParser() )[ 0 ];
7976             if ( p53.getNode( "B (x (a' ,b) f(x);" ) == null ) {
7977                 return false;
7978             }
7979             // 
7980             final Phylogeny p54 = factory.create( new StringBuffer( "((A,B):[88],C)" ), new NHXParser() )[ 0 ];
7981             if ( p54.getNode( "A" ) == null ) {
7982                 return false;
7983             }
7984             if ( !p54.toNewHampshire( false, NH_CONVERSION_SUPPORT_VALUE_STYLE.IN_SQUARE_BRACKETS )
7985                     .equals( "((A,B)[88],C);" ) ) {
7986                 return false;
7987             }
7988         }
7989         catch ( final Exception e ) {
7990             e.printStackTrace( System.out );
7991             return false;
7992         }
7993         return true;
7994     }
7995
7996     private static boolean testNHParsingIter() {
7997         try {
7998             final String p0_str = "(A,B);";
7999             final NHXParser p = new NHXParser();
8000             p.setSource( p0_str );
8001             if ( !p.hasNext() ) {
8002                 return false;
8003             }
8004             final Phylogeny p0 = p.next();
8005             if ( !p0.toNewHampshire().equals( p0_str ) ) {
8006                 System.out.println( p0.toNewHampshire() );
8007                 return false;
8008             }
8009             if ( p.hasNext() ) {
8010                 return false;
8011             }
8012             if ( p.next() != null ) {
8013                 return false;
8014             }
8015             //
8016             final String p00_str = "(A,B)root;";
8017             p.setSource( p00_str );
8018             final Phylogeny p00 = p.next();
8019             if ( !p00.toNewHampshire().equals( p00_str ) ) {
8020                 System.out.println( p00.toNewHampshire() );
8021                 return false;
8022             }
8023             //
8024             final String p000_str = "A;";
8025             p.setSource( p000_str );
8026             final Phylogeny p000 = p.next();
8027             if ( !p000.toNewHampshire().equals( p000_str ) ) {
8028                 System.out.println( p000.toNewHampshire() );
8029                 return false;
8030             }
8031             //
8032             final String p0000_str = "A";
8033             p.setSource( p0000_str );
8034             final Phylogeny p0000 = p.next();
8035             if ( !p0000.toNewHampshire().equals( "A;" ) ) {
8036                 System.out.println( p0000.toNewHampshire() );
8037                 return false;
8038             }
8039             //
8040             p.setSource( "(A)" );
8041             final Phylogeny p00000 = p.next();
8042             if ( !p00000.toNewHampshire().equals( "(A);" ) ) {
8043                 System.out.println( p00000.toNewHampshire() );
8044                 return false;
8045             }
8046             //
8047             final String p1_str = "(A,B)(C,D)(E,F)(G,H)";
8048             p.setSource( p1_str );
8049             if ( !p.hasNext() ) {
8050                 return false;
8051             }
8052             final Phylogeny p1_0 = p.next();
8053             if ( !p1_0.toNewHampshire().equals( "(A,B);" ) ) {
8054                 System.out.println( p1_0.toNewHampshire() );
8055                 return false;
8056             }
8057             if ( !p.hasNext() ) {
8058                 return false;
8059             }
8060             final Phylogeny p1_1 = p.next();
8061             if ( !p1_1.toNewHampshire().equals( "(C,D);" ) ) {
8062                 System.out.println( "(C,D) != " + p1_1.toNewHampshire() );
8063                 return false;
8064             }
8065             if ( !p.hasNext() ) {
8066                 return false;
8067             }
8068             final Phylogeny p1_2 = p.next();
8069             if ( !p1_2.toNewHampshire().equals( "(E,F);" ) ) {
8070                 System.out.println( "(E,F) != " + p1_2.toNewHampshire() );
8071                 return false;
8072             }
8073             if ( !p.hasNext() ) {
8074                 return false;
8075             }
8076             final Phylogeny p1_3 = p.next();
8077             if ( !p1_3.toNewHampshire().equals( "(G,H);" ) ) {
8078                 System.out.println( "(G,H) != " + p1_3.toNewHampshire() );
8079                 return false;
8080             }
8081             if ( p.hasNext() ) {
8082                 return false;
8083             }
8084             if ( p.next() != null ) {
8085                 return false;
8086             }
8087             //
8088             final String p2_str = "((1,2,3),B);(C,D) (E,F)root;(G,H); ;(X)";
8089             p.setSource( p2_str );
8090             if ( !p.hasNext() ) {
8091                 return false;
8092             }
8093             Phylogeny p2_0 = p.next();
8094             if ( !p2_0.toNewHampshire().equals( "((1,2,3),B);" ) ) {
8095                 System.out.println( p2_0.toNewHampshire() );
8096                 return false;
8097             }
8098             if ( !p.hasNext() ) {
8099                 return false;
8100             }
8101             Phylogeny p2_1 = p.next();
8102             if ( !p2_1.toNewHampshire().equals( "(C,D);" ) ) {
8103                 System.out.println( "(C,D) != " + p2_1.toNewHampshire() );
8104                 return false;
8105             }
8106             if ( !p.hasNext() ) {
8107                 return false;
8108             }
8109             Phylogeny p2_2 = p.next();
8110             if ( !p2_2.toNewHampshire().equals( "(E,F)root;" ) ) {
8111                 System.out.println( "(E,F)root != " + p2_2.toNewHampshire() );
8112                 return false;
8113             }
8114             if ( !p.hasNext() ) {
8115                 return false;
8116             }
8117             Phylogeny p2_3 = p.next();
8118             if ( !p2_3.toNewHampshire().equals( "(G,H);" ) ) {
8119                 System.out.println( "(G,H) != " + p2_3.toNewHampshire() );
8120                 return false;
8121             }
8122             if ( !p.hasNext() ) {
8123                 return false;
8124             }
8125             Phylogeny p2_4 = p.next();
8126             if ( !p2_4.toNewHampshire().equals( "(X);" ) ) {
8127                 System.out.println( "(X) != " + p2_4.toNewHampshire() );
8128                 return false;
8129             }
8130             if ( p.hasNext() ) {
8131                 return false;
8132             }
8133             if ( p.next() != null ) {
8134                 return false;
8135             }
8136             ////
8137             p.reset();
8138             if ( !p.hasNext() ) {
8139                 return false;
8140             }
8141             p2_0 = p.next();
8142             if ( !p2_0.toNewHampshire().equals( "((1,2,3),B);" ) ) {
8143                 System.out.println( p2_0.toNewHampshire() );
8144                 return false;
8145             }
8146             if ( !p.hasNext() ) {
8147                 return false;
8148             }
8149             p2_1 = p.next();
8150             if ( !p2_1.toNewHampshire().equals( "(C,D);" ) ) {
8151                 System.out.println( "(C,D) != " + p2_1.toNewHampshire() );
8152                 return false;
8153             }
8154             if ( !p.hasNext() ) {
8155                 return false;
8156             }
8157             p2_2 = p.next();
8158             if ( !p2_2.toNewHampshire().equals( "(E,F)root;" ) ) {
8159                 System.out.println( "(E,F)root != " + p2_2.toNewHampshire() );
8160                 return false;
8161             }
8162             if ( !p.hasNext() ) {
8163                 return false;
8164             }
8165             p2_3 = p.next();
8166             if ( !p2_3.toNewHampshire().equals( "(G,H);" ) ) {
8167                 System.out.println( "(G,H) != " + p2_3.toNewHampshire() );
8168                 return false;
8169             }
8170             if ( !p.hasNext() ) {
8171                 return false;
8172             }
8173             p2_4 = p.next();
8174             if ( !p2_4.toNewHampshire().equals( "(X);" ) ) {
8175                 System.out.println( "(X) != " + p2_4.toNewHampshire() );
8176                 return false;
8177             }
8178             if ( p.hasNext() ) {
8179                 return false;
8180             }
8181             if ( p.next() != null ) {
8182                 return false;
8183             }
8184             //
8185             final String p3_str = "((A,B),C)abc";
8186             p.setSource( p3_str );
8187             if ( !p.hasNext() ) {
8188                 return false;
8189             }
8190             final Phylogeny p3_0 = p.next();
8191             if ( !p3_0.toNewHampshire().equals( "((A,B),C)abc;" ) ) {
8192                 return false;
8193             }
8194             if ( p.hasNext() ) {
8195                 return false;
8196             }
8197             if ( p.next() != null ) {
8198                 return false;
8199             }
8200             //
8201             final String p4_str = "((A,B)ab,C)abc";
8202             p.setSource( p4_str );
8203             if ( !p.hasNext() ) {
8204                 return false;
8205             }
8206             final Phylogeny p4_0 = p.next();
8207             if ( !p4_0.toNewHampshire().equals( "((A,B)ab,C)abc;" ) ) {
8208                 return false;
8209             }
8210             if ( p.hasNext() ) {
8211                 return false;
8212             }
8213             if ( p.next() != null ) {
8214                 return false;
8215             }
8216             //
8217             final String p5_str = "(((A,B)ab,C)abc,D)abcd";
8218             p.setSource( p5_str );
8219             if ( !p.hasNext() ) {
8220                 return false;
8221             }
8222             final Phylogeny p5_0 = p.next();
8223             if ( !p5_0.toNewHampshire().equals( "(((A,B)ab,C)abc,D)abcd;" ) ) {
8224                 return false;
8225             }
8226             if ( p.hasNext() ) {
8227                 return false;
8228             }
8229             if ( p.next() != null ) {
8230                 return false;
8231             }
8232             //
8233             final String p6_str = "(A,(B,(C,(D,E)de)cde)bcde)abcde";
8234             p.setSource( p6_str );
8235             if ( !p.hasNext() ) {
8236                 return false;
8237             }
8238             Phylogeny p6_0 = p.next();
8239             if ( !p6_0.toNewHampshire().equals( "(A,(B,(C,(D,E)de)cde)bcde)abcde;" ) ) {
8240                 return false;
8241             }
8242             if ( p.hasNext() ) {
8243                 return false;
8244             }
8245             if ( p.next() != null ) {
8246                 return false;
8247             }
8248             p.reset();
8249             if ( !p.hasNext() ) {
8250                 return false;
8251             }
8252             p6_0 = p.next();
8253             if ( !p6_0.toNewHampshire().equals( "(A,(B,(C,(D,E)de)cde)bcde)abcde;" ) ) {
8254                 return false;
8255             }
8256             if ( p.hasNext() ) {
8257                 return false;
8258             }
8259             if ( p.next() != null ) {
8260                 return false;
8261             }
8262             //
8263             final String p7_str = "((((A,B)ab,C)abc,D)abcd,E)abcde";
8264             p.setSource( p7_str );
8265             if ( !p.hasNext() ) {
8266                 return false;
8267             }
8268             Phylogeny p7_0 = p.next();
8269             if ( !p7_0.toNewHampshire().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde;" ) ) {
8270                 return false;
8271             }
8272             if ( p.hasNext() ) {
8273                 return false;
8274             }
8275             if ( p.next() != null ) {
8276                 return false;
8277             }
8278             p.reset();
8279             if ( !p.hasNext() ) {
8280                 return false;
8281             }
8282             p7_0 = p.next();
8283             if ( !p7_0.toNewHampshire().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde;" ) ) {
8284                 return false;
8285             }
8286             if ( p.hasNext() ) {
8287                 return false;
8288             }
8289             if ( p.next() != null ) {
8290                 return false;
8291             }
8292             //
8293             final String p8_str = "((((A,B)ab,C)abc,D)abcd,E)abcde ((((a,b)ab,c)abc,d)abcd,e)abcde";
8294             p.setSource( p8_str );
8295             if ( !p.hasNext() ) {
8296                 return false;
8297             }
8298             Phylogeny p8_0 = p.next();
8299             if ( !p8_0.toNewHampshire().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde;" ) ) {
8300                 return false;
8301             }
8302             if ( !p.hasNext() ) {
8303                 return false;
8304             }
8305             if ( !p.hasNext() ) {
8306                 return false;
8307             }
8308             Phylogeny p8_1 = p.next();
8309             if ( !p8_1.toNewHampshire().equals( "((((a,b)ab,c)abc,d)abcd,e)abcde;" ) ) {
8310                 return false;
8311             }
8312             if ( p.hasNext() ) {
8313                 return false;
8314             }
8315             if ( p.next() != null ) {
8316                 return false;
8317             }
8318             p.reset();
8319             if ( !p.hasNext() ) {
8320                 return false;
8321             }
8322             p8_0 = p.next();
8323             if ( !p8_0.toNewHampshire().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde;" ) ) {
8324                 return false;
8325             }
8326             if ( !p.hasNext() ) {
8327                 return false;
8328             }
8329             p8_1 = p.next();
8330             if ( !p8_1.toNewHampshire().equals( "((((a,b)ab,c)abc,d)abcd,e)abcde;" ) ) {
8331                 return false;
8332             }
8333             if ( p.hasNext() ) {
8334                 return false;
8335             }
8336             if ( p.next() != null ) {
8337                 return false;
8338             }
8339             p.reset();
8340             //
8341             p.setSource( "" );
8342             if ( p.hasNext() ) {
8343                 return false;
8344             }
8345             //
8346             p.setSource( new File( Test.PATH_TO_TEST_DATA + "phylogeny27.nhx" ) );
8347             if ( !p.hasNext() ) {
8348                 return false;
8349             }
8350             Phylogeny p_27 = p.next();
8351             if ( !p_27.toNewHampshireX().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde" ) ) {
8352                 System.out.println( p_27.toNewHampshireX() );
8353                 System.exit( -1 );
8354                 return false;
8355             }
8356             if ( p.hasNext() ) {
8357                 return false;
8358             }
8359             if ( p.next() != null ) {
8360                 return false;
8361             }
8362             p.reset();
8363             if ( !p.hasNext() ) {
8364                 return false;
8365             }
8366             p_27 = p.next();
8367             if ( !p_27.toNewHampshireX().equals( "((((A,B)ab,C)abc,D)abcd,E)abcde" ) ) {
8368                 System.out.println( p_27.toNewHampshireX() );
8369                 System.exit( -1 );
8370                 return false;
8371             }
8372             if ( p.hasNext() ) {
8373                 return false;
8374             }
8375             if ( p.next() != null ) {
8376                 return false;
8377             }
8378             //
8379             final String p30_str = "(A,B);(C,D)";
8380             final NHXParser p30 = new NHXParser();
8381             p30.setSource( p30_str );
8382             if ( !p30.hasNext() ) {
8383                 return false;
8384             }
8385             Phylogeny phy30 = p30.next();
8386             if ( !phy30.toNewHampshire().equals( "(A,B);" ) ) {
8387                 System.out.println( phy30.toNewHampshire() );
8388                 return false;
8389             }
8390             if ( !p30.hasNext() ) {
8391                 return false;
8392             }
8393             Phylogeny phy301 = p30.next();
8394             if ( !phy301.toNewHampshire().equals( "(C,D);" ) ) {
8395                 System.out.println( phy301.toNewHampshire() );
8396                 return false;
8397             }
8398             if ( p30.hasNext() ) {
8399                 return false;
8400             }
8401             if ( p30.hasNext() ) {
8402                 return false;
8403             }
8404             if ( p30.next() != null ) {
8405                 return false;
8406             }
8407             if ( p30.next() != null ) {
8408                 return false;
8409             }
8410             p30.reset();
8411             if ( !p30.hasNext() ) {
8412                 return false;
8413             }
8414             phy30 = p30.next();
8415             if ( !phy30.toNewHampshire().equals( "(A,B);" ) ) {
8416                 System.out.println( phy30.toNewHampshire() );
8417                 return false;
8418             }
8419             if ( !p30.hasNext() ) {
8420                 return false;
8421             }
8422             phy301 = p30.next();
8423             if ( !phy301.toNewHampshire().equals( "(C,D);" ) ) {
8424                 System.out.println( phy301.toNewHampshire() );
8425                 return false;
8426             }
8427             if ( p30.hasNext() ) {
8428                 return false;
8429             }
8430             if ( p30.hasNext() ) {
8431                 return false;
8432             }
8433             if ( p30.next() != null ) {
8434                 return false;
8435             }
8436             if ( p30.next() != null ) {
8437                 return false;
8438             }
8439         }
8440         catch ( final Exception e ) {
8441             e.printStackTrace( System.out );
8442             return false;
8443         }
8444         return true;
8445     }
8446
8447     private static boolean testNHXconversion() {
8448         try {
8449             final PhylogenyNode n1 = new PhylogenyNode();
8450             final PhylogenyNode n2 = PhylogenyNode.createInstanceFromNhxString( "" );
8451             final PhylogenyNode n3 = PhylogenyNode.createInstanceFromNhxString( "n3" );
8452             final PhylogenyNode n4 = PhylogenyNode.createInstanceFromNhxString( "n4:0.01" );
8453             final PhylogenyNode n5 = PhylogenyNode
8454                     .createInstanceFromNhxString( "n5:0.1[&&NHX:S=Ecoli:E=1.1.1.1:D=Y:Co=Y:B=56:T=1]" );
8455             final PhylogenyNode n6 = PhylogenyNode
8456                     .createInstanceFromNhxString( "n6:0.000001[&&NHX:S=Ecoli:E=1.1.1.1:D=N:Co=N:B=100:T=1]" );
8457             if ( !n1.toNewHampshireX().equals( "" ) ) {
8458                 return false;
8459             }
8460             if ( !n2.toNewHampshireX().equals( "" ) ) {
8461                 return false;
8462             }
8463             if ( !n3.toNewHampshireX().equals( "n3" ) ) {
8464                 return false;
8465             }
8466             if ( !n4.toNewHampshireX().equals( "n4:0.01" ) ) {
8467                 return false;
8468             }
8469             if ( !n5.toNewHampshireX().equals( "n5:0.1[&&NHX:T=1:S=Ecoli:D=Y:B=56]" ) ) {
8470                 return false;
8471             }
8472             if ( !n6.toNewHampshireX().equals( "n6:1.0E-6[&&NHX:T=1:S=Ecoli:D=N:B=100]" ) ) {
8473                 System.out.println( n6.toNewHampshireX() );
8474                 return false;
8475             }
8476         }
8477         catch ( final Exception e ) {
8478             e.printStackTrace( System.out );
8479             return false;
8480         }
8481         return true;
8482     }
8483
8484     private static boolean testNHXNodeParsing() {
8485         try {
8486             final PhylogenyNode n1 = new PhylogenyNode();
8487             final PhylogenyNode n2 = PhylogenyNode.createInstanceFromNhxString( "" );
8488             final PhylogenyNode n3 = PhylogenyNode.createInstanceFromNhxString( "n3" );
8489             final PhylogenyNode n4 = PhylogenyNode.createInstanceFromNhxString( "n4:0.01" );
8490             final PhylogenyNode n5 = PhylogenyNode
8491                     .createInstanceFromNhxString( "n5:0.1[&&NHX:S=Ecoli:E=1.1.1.1:D=Y:B=56:T=1:On=22:SOn=33:SNn=44:W=2:C=10.20.30:XN=S=tag1=value1=unit1:XN=S=tag3=value3=unit3]" );
8492             if ( !n3.getName().equals( "n3" ) ) {
8493                 return false;
8494             }
8495             if ( n3.getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) {
8496                 return false;
8497             }
8498             if ( n3.isDuplication() ) {
8499                 return false;
8500             }
8501             if ( n3.isHasAssignedEvent() ) {
8502                 return false;
8503             }
8504             if ( PhylogenyMethods.getBranchWidthValue( n3 ) != BranchWidth.BRANCH_WIDTH_DEFAULT_VALUE ) {
8505                 return false;
8506             }
8507             if ( !n4.getName().equals( "n4" ) ) {
8508                 return false;
8509             }
8510             if ( n4.getDistanceToParent() != 0.01 ) {
8511                 return false;
8512             }
8513             if ( !n5.getName().equals( "n5" ) ) {
8514                 return false;
8515             }
8516             if ( PhylogenyMethods.getConfidenceValue( n5 ) != 56 ) {
8517                 return false;
8518             }
8519             if ( n5.getDistanceToParent() != 0.1 ) {
8520                 return false;
8521             }
8522             if ( !PhylogenyMethods.getSpecies( n5 ).equals( "Ecoli" ) ) {
8523                 return false;
8524             }
8525             if ( !n5.isDuplication() ) {
8526                 return false;
8527             }
8528             if ( !n5.isHasAssignedEvent() ) {
8529                 return false;
8530             }
8531             final PhylogenyNode n8 = PhylogenyNode
8532                     .createInstanceFromNhxString( "ABCD_ECOLI/1-2:0.01",
8533                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8534             if ( !n8.getName().equals( "ABCD_ECOLI/1-2" ) ) {
8535                 return false;
8536             }
8537             if ( !PhylogenyMethods.getSpecies( n8 ).equals( "ECOLI" ) ) {
8538                 return false;
8539             }
8540             final PhylogenyNode n9 = PhylogenyNode
8541                     .createInstanceFromNhxString( "ABCD_ECOLI/1-12:0.01",
8542                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8543             if ( !n9.getName().equals( "ABCD_ECOLI/1-12" ) ) {
8544                 return false;
8545             }
8546             if ( !PhylogenyMethods.getSpecies( n9 ).equals( "ECOLI" ) ) {
8547                 return false;
8548             }
8549             final PhylogenyNode n10 = PhylogenyNode
8550                     .createInstanceFromNhxString( "n10.ECOLI", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8551             if ( !n10.getName().equals( "n10.ECOLI" ) ) {
8552                 return false;
8553             }
8554             final PhylogenyNode n20 = PhylogenyNode
8555                     .createInstanceFromNhxString( "ABCD_ECOLI/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8556             if ( !n20.getName().equals( "ABCD_ECOLI/1-2" ) ) {
8557                 return false;
8558             }
8559             if ( !PhylogenyMethods.getSpecies( n20 ).equals( "ECOLI" ) ) {
8560                 return false;
8561             }
8562             final PhylogenyNode n20x = PhylogenyNode
8563                     .createInstanceFromNhxString( "N20_ECOL1/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8564             if ( !n20x.getName().equals( "N20_ECOL1/1-2" ) ) {
8565                 return false;
8566             }
8567             if ( !PhylogenyMethods.getSpecies( n20x ).equals( "ECOL1" ) ) {
8568                 return false;
8569             }
8570             final PhylogenyNode n20xx = PhylogenyNode
8571                     .createInstanceFromNhxString( "N20_eCOL1/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8572             if ( !n20xx.getName().equals( "N20_eCOL1/1-2" ) ) {
8573                 return false;
8574             }
8575             if ( PhylogenyMethods.getSpecies( n20xx ).length() > 0 ) {
8576                 return false;
8577             }
8578             final PhylogenyNode n20xxx = PhylogenyNode
8579                     .createInstanceFromNhxString( "n20_ecoli/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8580             if ( !n20xxx.getName().equals( "n20_ecoli/1-2" ) ) {
8581                 return false;
8582             }
8583             if ( PhylogenyMethods.getSpecies( n20xxx ).length() > 0 ) {
8584                 return false;
8585             }
8586             final PhylogenyNode n20xxxx = PhylogenyNode
8587                     .createInstanceFromNhxString( "n20_Ecoli/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8588             if ( !n20xxxx.getName().equals( "n20_Ecoli/1-2" ) ) {
8589                 return false;
8590             }
8591             if ( PhylogenyMethods.getSpecies( n20xxxx ).length() > 0 ) {
8592                 return false;
8593             }
8594             final PhylogenyNode n21 = PhylogenyNode
8595                     .createInstanceFromNhxString( "N21_PIG", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8596             if ( !n21.getName().equals( "N21_PIG" ) ) {
8597                 return false;
8598             }
8599             if ( !PhylogenyMethods.getSpecies( n21 ).equals( "PIG" ) ) {
8600                 return false;
8601             }
8602             final PhylogenyNode n21x = PhylogenyNode
8603                     .createInstanceFromNhxString( "n21_PIG", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8604             if ( !n21x.getName().equals( "n21_PIG" ) ) {
8605                 return false;
8606             }
8607             if ( PhylogenyMethods.getSpecies( n21x ).length() > 0 ) {
8608                 return false;
8609             }
8610             final PhylogenyNode n22 = PhylogenyNode
8611                     .createInstanceFromNhxString( "n22/PIG", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8612             if ( !n22.getName().equals( "n22/PIG" ) ) {
8613                 return false;
8614             }
8615             if ( PhylogenyMethods.getSpecies( n22 ).length() > 0 ) {
8616                 return false;
8617             }
8618             final PhylogenyNode n23 = PhylogenyNode
8619                     .createInstanceFromNhxString( "n23/PIG_1", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8620             if ( !n23.getName().equals( "n23/PIG_1" ) ) {
8621                 return false;
8622             }
8623             if ( PhylogenyMethods.getSpecies( n23 ).length() > 0 ) {
8624                 return false;
8625             }
8626             final PhylogenyNode a = PhylogenyNode
8627                     .createInstanceFromNhxString( "ABCD_ECOLI/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8628             if ( !a.getName().equals( "ABCD_ECOLI/1-2" ) ) {
8629                 return false;
8630             }
8631             if ( !PhylogenyMethods.getSpecies( a ).equals( "ECOLI" ) ) {
8632                 return false;
8633             }
8634             final PhylogenyNode c1 = PhylogenyNode
8635                     .createInstanceFromNhxString( "n10_BOVIN/1000-2000",
8636                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8637             if ( !c1.getName().equals( "n10_BOVIN/1000-2000" ) ) {
8638                 return false;
8639             }
8640             if ( !PhylogenyMethods.getSpecies( c1 ).equals( "BOVIN" ) ) {
8641                 return false;
8642             }
8643             final PhylogenyNode c2 = PhylogenyNode
8644                     .createInstanceFromNhxString( "N10_Bovin_1/1000-2000",
8645                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8646             if ( !c2.getName().equals( "N10_Bovin_1/1000-2000" ) ) {
8647                 return false;
8648             }
8649             if ( PhylogenyMethods.getSpecies( c2 ).length() > 0 ) {
8650                 return false;
8651             }
8652             final PhylogenyNode e3 = PhylogenyNode
8653                     .createInstanceFromNhxString( "n10_RAT~", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8654             if ( !e3.getName().equals( "n10_RAT~" ) ) {
8655                 return false;
8656             }
8657             if ( !PhylogenyMethods.getSpecies( e3 ).equals( "RAT" ) ) {
8658                 return false;
8659             }
8660             final PhylogenyNode n11 = PhylogenyNode
8661                     .createInstanceFromNhxString( "N111111_ECOLI/1-2:0.4",
8662                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8663             if ( !n11.getName().equals( "N111111_ECOLI/1-2" ) ) {
8664                 return false;
8665             }
8666             if ( n11.getDistanceToParent() != 0.4 ) {
8667                 return false;
8668             }
8669             if ( !PhylogenyMethods.getSpecies( n11 ).equals( "ECOLI" ) ) {
8670                 return false;
8671             }
8672             final PhylogenyNode n12 = PhylogenyNode
8673                     .createInstanceFromNhxString( "N111111-ECOLI---/jdj:0.4",
8674                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8675             if ( !n12.getName().equals( "N111111-ECOLI---/jdj" ) ) {
8676                 return false;
8677             }
8678             if ( n12.getDistanceToParent() != 0.4 ) {
8679                 return false;
8680             }
8681             if ( PhylogenyMethods.getSpecies( n12 ).length() > 0 ) {
8682                 return false;
8683             }
8684             final PhylogenyNode o = PhylogenyNode
8685                     .createInstanceFromNhxString( "ABCD_MOUSE", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8686             if ( !o.getName().equals( "ABCD_MOUSE" ) ) {
8687                 return false;
8688             }
8689             if ( !PhylogenyMethods.getSpecies( o ).equals( "MOUSE" ) ) {
8690                 return false;
8691             }
8692             if ( n1.getName().compareTo( "" ) != 0 ) {
8693                 return false;
8694             }
8695             if ( PhylogenyMethods.getConfidenceValue( n1 ) != Confidence.CONFIDENCE_DEFAULT_VALUE ) {
8696                 return false;
8697             }
8698             if ( n1.getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) {
8699                 return false;
8700             }
8701             if ( n2.getName().compareTo( "" ) != 0 ) {
8702                 return false;
8703             }
8704             if ( PhylogenyMethods.getConfidenceValue( n2 ) != Confidence.CONFIDENCE_DEFAULT_VALUE ) {
8705                 return false;
8706             }
8707             if ( n2.getDistanceToParent() != PhylogenyDataUtil.BRANCH_LENGTH_DEFAULT ) {
8708                 return false;
8709             }
8710             final PhylogenyNode n00 = PhylogenyNode
8711                     .createInstanceFromNhxString( "n7:0.000001[&&NHX:GN=gene_name:AC=accession123:S=Ecoli:D=N:Co=N:B=100:T=1]" );
8712             if ( !n00.getNodeData().getSequence().getName().equals( "gene_name" ) ) {
8713                 return false;
8714             }
8715             if ( !n00.getNodeData().getSequence().getAccession().getValue().equals( "accession123" ) ) {
8716                 return false;
8717             }
8718             final PhylogenyNode nx = PhylogenyNode.createInstanceFromNhxString( "n5:0.1[&&NHX:S=Ecoli:GN=gene_1]" );
8719             if ( !nx.getNodeData().getSequence().getName().equals( "gene_1" ) ) {
8720                 return false;
8721             }
8722             final PhylogenyNode n13 = PhylogenyNode
8723                     .createInstanceFromNhxString( "BLAH_12345/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8724             if ( !n13.getName().equals( "BLAH_12345/1-2" ) ) {
8725                 return false;
8726             }
8727             if ( PhylogenyMethods.getSpecies( n13 ).equals( "12345" ) ) {
8728                 return false;
8729             }
8730             if ( !n13.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "12345" ) ) {
8731                 return false;
8732             }
8733             if ( !n13.getNodeData().getTaxonomy().getIdentifier().getProvider().equals( "uniprot" ) ) {
8734                 return false;
8735             }
8736             final PhylogenyNode n14 = PhylogenyNode
8737                     .createInstanceFromNhxString( "BLA1_9QX45/1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8738             if ( !n14.getName().equals( "BLA1_9QX45/1-2" ) ) {
8739                 return false;
8740             }
8741             if ( !PhylogenyMethods.getSpecies( n14 ).equals( "9QX45" ) ) {
8742                 return false;
8743             }
8744             final PhylogenyNode n15 = PhylogenyNode
8745                     .createInstanceFromNhxString( "something_wicked[123]",
8746                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8747             if ( !n15.getName().equals( "something_wicked" ) ) {
8748                 return false;
8749             }
8750             if ( n15.getBranchData().getNumberOfConfidences() != 1 ) {
8751                 return false;
8752             }
8753             if ( !isEqual( n15.getBranchData().getConfidence( 0 ).getValue(), 123 ) ) {
8754                 return false;
8755             }
8756             final PhylogenyNode n16 = PhylogenyNode
8757                     .createInstanceFromNhxString( "something_wicked2[9]",
8758                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8759             if ( !n16.getName().equals( "something_wicked2" ) ) {
8760                 return false;
8761             }
8762             if ( n16.getBranchData().getNumberOfConfidences() != 1 ) {
8763                 return false;
8764             }
8765             if ( !isEqual( n16.getBranchData().getConfidence( 0 ).getValue(), 9 ) ) {
8766                 return false;
8767             }
8768             final PhylogenyNode n17 = PhylogenyNode
8769                     .createInstanceFromNhxString( "something_wicked3[a]",
8770                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8771             if ( !n17.getName().equals( "something_wicked3" ) ) {
8772                 return false;
8773             }
8774             if ( n17.getBranchData().getNumberOfConfidences() != 0 ) {
8775                 return false;
8776             }
8777             final PhylogenyNode n18 = PhylogenyNode
8778                     .createInstanceFromNhxString( ":0.5[91]", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8779             if ( !isEqual( n18.getDistanceToParent(), 0.5 ) ) {
8780                 return false;
8781             }
8782             if ( n18.getBranchData().getNumberOfConfidences() != 1 ) {
8783                 return false;
8784             }
8785             if ( !isEqual( n18.getBranchData().getConfidence( 0 ).getValue(), 91 ) ) {
8786                 return false;
8787             }
8788             final PhylogenyNode n19 = PhylogenyNode
8789                     .createInstanceFromNhxString( "BLAH_1-roejojoej", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8790             if ( !n19.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "1" ) ) {
8791                 return false;
8792             }
8793             if ( !n19.getNodeData().getTaxonomy().getIdentifier().getProvider().equals( "uniprot" ) ) {
8794                 return false;
8795             }
8796             final PhylogenyNode n30 = PhylogenyNode
8797                     .createInstanceFromNhxString( "BLAH_1234567-roejojoej",
8798                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8799             if ( !n30.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "1234567" ) ) {
8800                 return false;
8801             }
8802             if ( !n30.getNodeData().getTaxonomy().getIdentifier().getProvider().equals( "uniprot" ) ) {
8803                 return false;
8804             }
8805             final PhylogenyNode n31 = PhylogenyNode
8806                     .createInstanceFromNhxString( "BLAH_12345678-roejojoej",
8807                                                   NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8808             if ( n31.getNodeData().isHasTaxonomy() ) {
8809                 return false;
8810             }
8811             final PhylogenyNode n32 = PhylogenyNode
8812                     .createInstanceFromNhxString( "sd_12345678", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8813             if ( n32.getNodeData().isHasTaxonomy() ) {
8814                 return false;
8815             }
8816             final PhylogenyNode n40 = PhylogenyNode
8817                     .createInstanceFromNhxString( "BCL2_12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8818             if ( !n40.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "12345" ) ) {
8819                 return false;
8820             }
8821             final PhylogenyNode n41 = PhylogenyNode
8822                     .createInstanceFromNhxString( "12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8823             if ( n41.getNodeData().isHasTaxonomy() ) {
8824                 return false;
8825             }
8826             final PhylogenyNode n42 = PhylogenyNode
8827                     .createInstanceFromNhxString( "12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_STRICT );
8828             if ( n42.getNodeData().isHasTaxonomy() ) {
8829                 return false;
8830             }
8831             final PhylogenyNode n43 = PhylogenyNode.createInstanceFromNhxString( "12345",
8832                                                                                  NHXParser.TAXONOMY_EXTRACTION.NO );
8833             if ( n43.getNodeData().isHasTaxonomy() ) {
8834                 return false;
8835             }
8836             final PhylogenyNode n44 = PhylogenyNode
8837                     .createInstanceFromNhxString( "12345~1-2", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
8838             if ( n44.getNodeData().isHasTaxonomy() ) {
8839                 return false;
8840             }
8841         }
8842         catch ( final Exception e ) {
8843             e.printStackTrace( System.out );
8844             return false;
8845         }
8846         return true;
8847     }
8848
8849     private static boolean testNHXParsing() {
8850         try {
8851             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
8852             final Phylogeny p1 = factory.create( "(A     [&&NHX:S=a_species],B1[&&NHX:S=b_species])", new NHXParser() )[ 0 ];
8853             if ( !p1.toNewHampshireX().equals( "(A[&&NHX:S=a_species],B1[&&NHX:S=b_species])" ) ) {
8854                 return false;
8855             }
8856             final String p2_S = "(((((((A:0.2[&&NHX:S=qwerty]):0.2[&&NHX:S=uiop]):0.3[&&NHX:S=asdf]):0.4[&&NHX:S=zxc]):0.5[&&NHX:S=a]):0.6[&&NHX:S=asd]):0.7[&&NHX:S=za]):0.8[&&NHX:S=zaq]";
8857             final Phylogeny[] p2 = factory.create( p2_S, new NHXParser() );
8858             if ( !p2[ 0 ].toNewHampshireX().equals( p2_S ) ) {
8859                 return false;
8860             }
8861             final String p2b_S = "(((((((A:0.2[&NHX:S=qw,erty]):0.2[&:S=u(io)p]):0.3[&NHX:S=asdf]):0.4[S=zxc]):0.5[]):0.6[&&NH:S=asd]):0.7[&&HX:S=za]):0.8[&&:S=zaq]";
8862             final Phylogeny[] p2b = factory.create( p2b_S, new NHXParser() );
8863             if ( !p2b[ 0 ].toNewHampshireX().equals( "(((((((A:0.2):0.2):0.3):0.4):0.5):0.6):0.7):0.8" ) ) {
8864                 return false;
8865             }
8866             final Phylogeny[] p3 = factory
8867                     .create( "[  comment&&NHX,())))](((((((A:0.2[&&NHX:S=qwerty]):0.2[&&NHX:S=uiop]):0.3[&&NHX:S=asdf]):0.4[&&NHX:S=zxc]):0.5[&&NHX:S=a]):0.6[&&NHX:S=asd]):0.7[&&NHX:S=za]):0.8[&&NHX:S=zaq]",
8868                              new NHXParser() );
8869             if ( !p3[ 0 ].toNewHampshireX().equals( p2_S ) ) {
8870                 return false;
8871             }
8872             final Phylogeny[] p4 = factory
8873                     .create( "(((((((A:0.2[&&NHX:S=qwerty]):0.2[&&NHX:S=uiop]):0.3[&&NHX:S=asdf]):0.4[&&NHX:S=zxc]):0.5[&&NHX:S=a]):0.6[&&NHX:S=asd]):0.7[&&NHX:S=za]):0.8[&&NHX:S=zaq][comment(]",
8874                              new NHXParser() );
8875             if ( !p4[ 0 ].toNewHampshireX().equals( p2_S ) ) {
8876                 return false;
8877             }
8878             final Phylogeny[] p5 = factory
8879                     .create( "[]  (  [][ ][   ]  ([((( &&NHXcomment only![[[[[[]([]((((A:0.2[&&NHX:S=q[comment )))]werty][,,,,))]):0.2[&&NHX:S=uiop]):0.3[&&NHX:S=a[comment,,))]sdf])[comment(((]:0.4[&&NHX:S=zxc][comment(((][comment(((]):0.5[&&NHX:S=a]):0.6[&&NHX:S=a[comment(((]sd]):0.7[&&NHX:S=za]):0.8[&&NHX:S=zaq][comment(((]",
8880                              new NHXParser() );
8881             if ( !p5[ 0 ].toNewHampshireX().equals( p2_S ) ) {
8882                 return false;
8883             }
8884             final String p6_S_C = "(A[][][][1][22][333][4444][55555][666666][&&NHX:S=Aspecies],B[))],C,(AA,BB,CC,(CCC,DDD,EEE,[comment](FFFF,GGGG)x)y,D[comment]D,EE,FF,GG,HH),D,E,(EE,FF),F,G,H,(((((5)4)3)2)1),I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,(XX,(YY)),Y,Z)";
8885             final String p6_S_WO_C = "(A[&&NHX:S=Aspecies],B,C,(AA,BB,CC,(CCC,DDD,EEE,(FFFF,GGGG)x)y,DD,EE,FF,GG,HH),D,E,(EE,FF),F,G,H,(((((5)4)3)2)1),I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,(XX,(YY)),Y,Z)";
8886             final Phylogeny[] p6 = factory.create( p6_S_C, new NHXParser() );
8887             if ( !p6[ 0 ].toNewHampshireX().equals( p6_S_WO_C ) ) {
8888                 return false;
8889             }
8890             final String p7_S_C = "(((A [&&NHX:S=species_a], B [&&NHX:S=Vstorri] , C   , D),(A,B,C,D[comment])[],[c][]([xxx]A[comment],[comment]B[comment][comment],[comment][comment]C[comment][comment],[comment][comment]D[comment][comment])[comment][comment],[comment]   [comment](A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C[comment][comment][comment][comment][comment]    [comment],D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),[comment][comment]((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)))";
8891             final String p7_S_WO_C = "(((A[&&NHX:S=species_a],B[&&NHX:S=Vstorri],C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)),((A,B,C,D),(A,B,C,D),(A,B,C,D),(A,B,C,D)))";
8892             final Phylogeny[] p7 = factory.create( p7_S_C, new NHXParser() );
8893             if ( !p7[ 0 ].toNewHampshireX().equals( p7_S_WO_C ) ) {
8894                 return false;
8895             }
8896             final String p8_S_C = "[cmt](((([]([))))))](((((A[&&NHX:S= [a comment] a])))))))[too many comments!:)])),(((((((((B[&&NHX[ a comment in a bad place]:S   =b])))))[] []   )))),(((((((((C[&&NHX:S=c])   ))[,,, ])))))))";
8897             final String p8_S_WO_C = "((((((((((A[&&NHX:S=a]))))))))),(((((((((B[&&NHX:S=b]))))))))),(((((((((C[&&NHX:S=c]))))))))))";
8898             final Phylogeny[] p8 = factory.create( p8_S_C, new NHXParser() );
8899             if ( !p8[ 0 ].toNewHampshireX().equals( p8_S_WO_C ) ) {
8900                 return false;
8901             }
8902             final Phylogeny p9 = factory.create( "((A:0.2,B:0.3):0.5[91],C:0.1)root:0.1[100]", new NHXParser() )[ 0 ];
8903             if ( !p9.toNewHampshireX().equals( "((A:0.2,B:0.3):0.5[&&NHX:B=91],C:0.1)root:0.1[&&NHX:B=100]" ) ) {
8904                 return false;
8905             }
8906             final Phylogeny p10 = factory
8907                     .create( " [79]   ( (A [co mment] :0 .2[comment],B:0.3[com])[com ment]: 0. 5 \t[ 9 1 ][ comment],C: 0.1)[comment]root:0.1[100] [comment]",
8908                              new NHXParser() )[ 0 ];
8909             if ( !p10.toNewHampshireX().equals( "((A:0.2,B:0.3):0.5[&&NHX:B=91],C:0.1)root:0.1[&&NHX:B=100]" ) ) {
8910                 return false;
8911             }
8912         }
8913         catch ( final Exception e ) {
8914             e.printStackTrace( System.out );
8915             return false;
8916         }
8917         return true;
8918     }
8919
8920     private static boolean testNHXParsingMB() {
8921         try {
8922             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
8923             final Phylogeny p1 = factory.create( "(1[&prob=0.9500000000000000e+00,prob_stddev=0.1100000000000000e+00,"
8924                     + "prob_range={1.000000000000000e+00,1.000000000000000e+00},prob(percent)=\"100\","
8925                     + "prob+-sd=\"100+-0\"]:4.129000000000000e-02[&length_mean=4.153987461671767e-02,"
8926                     + "length_median=4.129000000000000e-02,length_95%HPD={3.217800000000000e-02,"
8927                     + "5.026800000000000e-02}],2[&prob=0.810000000000000e+00,prob_stddev=0.000000000000000e+00,"
8928                     + "prob_range={1.000000000000000e+00,1.000000000000000e+00},prob(percent)=\"100\","
8929                     + "prob+-sd=\"100+-0\"]:6.375699999999999e-02[&length_mean=6.395210411945065e-02,"
8930                     + "length_median=6.375699999999999e-02,length_95%HPD={5.388600000000000e-02,"
8931                     + "7.369400000000000e-02}])", new NHXParser() )[ 0 ];
8932             if ( !isEqual( p1.getNode( "1" ).getDistanceToParent(), 4.129e-02 ) ) {
8933                 return false;
8934             }
8935             if ( !isEqual( p1.getNode( "1" ).getBranchData().getConfidence( 0 ).getValue(), 0.9500000000000000e+00 ) ) {
8936                 return false;
8937             }
8938             if ( !isEqual( p1.getNode( "1" ).getBranchData().getConfidence( 0 ).getStandardDeviation(),
8939                            0.1100000000000000e+00 ) ) {
8940                 return false;
8941             }
8942             if ( !isEqual( p1.getNode( "2" ).getDistanceToParent(), 6.375699999999999e-02 ) ) {
8943                 return false;
8944             }
8945             if ( !isEqual( p1.getNode( "2" ).getBranchData().getConfidence( 0 ).getValue(), 0.810000000000000e+00 ) ) {
8946                 return false;
8947             }
8948             final Phylogeny p2 = factory
8949                     .create( "(1[something_else(?)s,prob=0.9500000000000000e+00{}(((,p)rob_stddev=0.110000000000e+00,"
8950                                      + "prob_range={1.000000000000000e+00,1.000000000000000e+00},prob(percent)=\"100\","
8951                                      + "prob+-sd=\"100+-0\"]:4.129000000000000e-02[&length_mean=4.153987461671767e-02,"
8952                                      + "length_median=4.129000000000000e-02,length_95%HPD={3.217800000000000e-02,"
8953                                      + "5.026800000000000e-02}],2[&prob=0.810000000000000e+00,prob_stddev=0.000000000000000e+00,"
8954                                      + "prob_range={1.000000000000000e+00,1.000000000000000e+00},prob(percent)=\"100\","
8955                                      + "prob+-sd=\"100+-0\"]:6.375699999999999e-02[&length_mean=6.395210411945065e-02,"
8956                                      + "length_median=6.375699999999999e-02,length_95%HPD={5.388600000000000e-02,"
8957                                      + "7.369400000000000e-02}])",
8958                              new NHXParser() )[ 0 ];
8959             if ( p2.getNode( "1" ) == null ) {
8960                 return false;
8961             }
8962             if ( p2.getNode( "2" ) == null ) {
8963                 return false;
8964             }
8965         }
8966         catch ( final Exception e ) {
8967             e.printStackTrace( System.out );
8968             System.exit( -1 );
8969             return false;
8970         }
8971         return true;
8972     }
8973
8974     private static boolean testNHXParsingQuotes() {
8975         try {
8976             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
8977             final NHXParser p = new NHXParser();
8978             final Phylogeny[] phylogenies_0 = factory.create( new File( Test.PATH_TO_TEST_DATA + "quotes.nhx" ), p );
8979             if ( phylogenies_0.length != 5 ) {
8980                 return false;
8981             }
8982             final Phylogeny phy = phylogenies_0[ 4 ];
8983             if ( phy.getNumberOfExternalNodes() != 7 ) {
8984                 return false;
8985             }
8986             if ( phy.getNodes( "a name in double quotes from tree ((a,b),c)" ).size() != 1 ) {
8987                 return false;
8988             }
8989             if ( phy.getNodes( "charles darwin 'origin of species'" ).size() != 1 ) {
8990                 return false;
8991             }
8992             if ( !phy.getNodes( "charles darwin 'origin of species'" ).get( 0 ).getNodeData().getTaxonomy()
8993                     .getScientificName().equals( "hsapiens" ) ) {
8994                 return false;
8995             }
8996             if ( phy.getNodes( "shouldbetogether single quotes" ).size() != 1 ) {
8997                 return false;
8998             }
8999             if ( phy.getNodes( "'single quotes' inside double quotes" ).size() != 1 ) {
9000                 return false;
9001             }
9002             if ( phy.getNodes( "double quotes inside single quotes" ).size() != 1 ) {
9003                 return false;
9004             }
9005             if ( phy.getNodes( "noquotes" ).size() != 1 ) {
9006                 return false;
9007             }
9008             if ( phy.getNodes( "A   (  B    C '" ).size() != 1 ) {
9009                 return false;
9010             }
9011             final NHXParser p1p = new NHXParser();
9012             p1p.setIgnoreQuotes( true );
9013             final Phylogeny p1 = factory.create( "(\"A\",'B1')", p1p )[ 0 ];
9014             if ( !p1.toNewHampshire().equals( "(A,B1);" ) ) {
9015                 return false;
9016             }
9017             final NHXParser p2p = new NHXParser();
9018             p1p.setIgnoreQuotes( false );
9019             final Phylogeny p2 = factory.create( "(\"A\",'B1')", p2p )[ 0 ];
9020             if ( !p2.toNewHampshire().equals( "(A,B1);" ) ) {
9021                 return false;
9022             }
9023             final NHXParser p3p = new NHXParser();
9024             p3p.setIgnoreQuotes( false );
9025             final Phylogeny p3 = factory.create( "(\"A)\",'B1')", p3p )[ 0 ];
9026             if ( !p3.toNewHampshire().equals( "('A)',B1);" ) ) {
9027                 return false;
9028             }
9029             final NHXParser p4p = new NHXParser();
9030             p4p.setIgnoreQuotes( false );
9031             final Phylogeny p4 = factory.create( "(\"A)\",'B(),; x')", p4p )[ 0 ];
9032             if ( !p4.toNewHampshire().equals( "('A)','B(),; x');" ) ) {
9033                 return false;
9034             }
9035             final Phylogeny p10 = factory
9036                     .create( " [79]   ( (\"A \n\tB \" [co mment] :0 .2[comment],'B':0.3[com])[com ment]: 0. 5 \t[ 9 1 ][ comment],'C (or D?\\//;,))': 0.1)[comment]'\nroot is here (cool,  was! ) ':0.1[100] [comment]",
9037                              new NHXParser() )[ 0 ];
9038             final String p10_clean_str = "(('A B':0.2,B:0.3):0.5[&&NHX:B=91],'C (or D?\\//;,))':0.1)'root is here (cool,  was! )':0.1[&&NHX:B=100]";
9039             if ( !p10.toNewHampshireX().equals( p10_clean_str ) ) {
9040                 return false;
9041             }
9042             final Phylogeny p11 = factory.create( p10.toNewHampshireX(), new NHXParser() )[ 0 ];
9043             if ( !p11.toNewHampshireX().equals( p10_clean_str ) ) {
9044                 return false;
9045             }
9046             //
9047             final Phylogeny p12 = factory
9048                     .create( " [79]   ( (\"A \n\tB \" [[][] :0 .2[comment][\t&\t&\n N\tH\tX:S=mo\tnkey !],'\tB\t\b\t\n\f\rB B ':0.0\b3[])\t[com ment]: 0. 5 \t[ 9 1 ][ \ncomment],'C\t (or D?\\//;,))': 0.\b1)[comment]'\nroot \tis here (cool, \b\t\n\f\r was! ) ':0.1[100] [comment]",
9049                              new NHXParser() )[ 0 ];
9050             final String p12_clean_str = "(('A B':0.2[&&NHX:S=monkey!],'BB B':0.03):0.5[&&NHX:B=91],'C (or D?\\//;,))':0.1)'root is here (cool,  was! )':0.1[&&NHX:B=100]";
9051             if ( !p12.toNewHampshireX().equals( p12_clean_str ) ) {
9052                 return false;
9053             }
9054             final Phylogeny p13 = factory.create( p12.toNewHampshireX(), new NHXParser() )[ 0 ];
9055             if ( !p13.toNewHampshireX().equals( p12_clean_str ) ) {
9056                 return false;
9057             }
9058             final String p12_clean_str_nh = "(('A B':0.2,'BB B':0.03):0.5,'C (or D?\\//;,))':0.1)'root is here (cool,  was! )':0.1;";
9059             if ( !p13.toNewHampshire().equals( p12_clean_str_nh ) ) {
9060                 return false;
9061             }
9062             final Phylogeny p14 = factory.create( p13.toNewHampshire(), new NHXParser() )[ 0 ];
9063             if ( !p14.toNewHampshire().equals( p12_clean_str_nh ) ) {
9064                 return false;
9065             }
9066         }
9067         catch ( final Exception e ) {
9068             e.printStackTrace( System.out );
9069             return false;
9070         }
9071         return true;
9072     }
9073
9074     private static boolean testNodeRemoval() {
9075         try {
9076             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9077             final Phylogeny t0 = factory.create( "((a)b)", new NHXParser() )[ 0 ];
9078             PhylogenyMethods.removeNode( t0.getNode( "b" ), t0 );
9079             if ( !t0.toNewHampshire().equals( "(a);" ) ) {
9080                 return false;
9081             }
9082             final Phylogeny t1 = factory.create( "((a:2)b:4)", new NHXParser() )[ 0 ];
9083             PhylogenyMethods.removeNode( t1.getNode( "b" ), t1 );
9084             if ( !t1.toNewHampshire().equals( "(a:6.0);" ) ) {
9085                 return false;
9086             }
9087             final Phylogeny t2 = factory.create( "((a,b),c)", new NHXParser() )[ 0 ];
9088             PhylogenyMethods.removeNode( t2.getNode( "b" ), t2 );
9089             if ( !t2.toNewHampshire().equals( "((a),c);" ) ) {
9090                 return false;
9091             }
9092         }
9093         catch ( final Exception e ) {
9094             e.printStackTrace( System.out );
9095             return false;
9096         }
9097         return true;
9098     }
9099
9100     private static boolean testPhylogenyBranch() {
9101         try {
9102             final PhylogenyNode a1 = PhylogenyNode.createInstanceFromNhxString( "a" );
9103             final PhylogenyNode b1 = PhylogenyNode.createInstanceFromNhxString( "b" );
9104             final PhylogenyBranch a1b1 = new PhylogenyBranch( a1, b1 );
9105             final PhylogenyBranch b1a1 = new PhylogenyBranch( b1, a1 );
9106             if ( !a1b1.equals( a1b1 ) ) {
9107                 return false;
9108             }
9109             if ( !a1b1.equals( b1a1 ) ) {
9110                 return false;
9111             }
9112             if ( !b1a1.equals( a1b1 ) ) {
9113                 return false;
9114             }
9115             final PhylogenyBranch a1_b1 = new PhylogenyBranch( a1, b1, true );
9116             final PhylogenyBranch b1_a1 = new PhylogenyBranch( b1, a1, true );
9117             final PhylogenyBranch a1_b1_ = new PhylogenyBranch( a1, b1, false );
9118             if ( a1_b1.equals( b1_a1 ) ) {
9119                 return false;
9120             }
9121             if ( a1_b1.equals( a1_b1_ ) ) {
9122                 return false;
9123             }
9124             final PhylogenyBranch b1_a1_ = new PhylogenyBranch( b1, a1, false );
9125             if ( !a1_b1.equals( b1_a1_ ) ) {
9126                 return false;
9127             }
9128             if ( a1_b1_.equals( b1_a1_ ) ) {
9129                 return false;
9130             }
9131             if ( !a1_b1_.equals( b1_a1 ) ) {
9132                 return false;
9133             }
9134         }
9135         catch ( final Exception e ) {
9136             e.printStackTrace( System.out );
9137             return false;
9138         }
9139         return true;
9140     }
9141
9142     private static boolean testPhyloXMLparsingOfDistributionElement() {
9143         try {
9144             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9145             PhyloXmlParser xml_parser = null;
9146             try {
9147                 xml_parser = PhyloXmlParser.createPhyloXmlParserXsdValidating();
9148             }
9149             catch ( final Exception e ) {
9150                 // Do nothing -- means were not running from jar.
9151             }
9152             if ( xml_parser == null ) {
9153                 xml_parser = PhyloXmlParser.createPhyloXmlParser();
9154                 if ( USE_LOCAL_PHYLOXML_SCHEMA ) {
9155                     xml_parser.setValidateAgainstSchema( PHYLOXML_LOCAL_XSD );
9156                 }
9157                 else {
9158                     xml_parser.setValidateAgainstSchema( PHYLOXML_REMOTE_XSD );
9159                 }
9160             }
9161             final Phylogeny[] phylogenies_0 = factory.create( Test.PATH_TO_TEST_DATA + "phyloxml_distribution.xml",
9162                                                               xml_parser );
9163             if ( xml_parser.getErrorCount() > 0 ) {
9164                 System.out.println( xml_parser.getErrorMessages().toString() );
9165                 return false;
9166             }
9167             if ( phylogenies_0.length != 1 ) {
9168                 return false;
9169             }
9170             final Phylogeny t1 = phylogenies_0[ 0 ];
9171             PhylogenyNode n = null;
9172             Distribution d = null;
9173             n = t1.getNode( "root node" );
9174             if ( !n.getNodeData().isHasDistribution() ) {
9175                 return false;
9176             }
9177             if ( n.getNodeData().getDistributions().size() != 1 ) {
9178                 return false;
9179             }
9180             d = n.getNodeData().getDistribution();
9181             if ( !d.getDesc().equals( "Hirschweg 38" ) ) {
9182                 return false;
9183             }
9184             if ( d.getPoints().size() != 1 ) {
9185                 return false;
9186             }
9187             if ( d.getPolygons() != null ) {
9188                 return false;
9189             }
9190             if ( !d.getPoints().get( 0 ).getAltitude().toString().equals( "472" ) ) {
9191                 return false;
9192             }
9193             if ( !d.getPoints().get( 0 ).getAltiudeUnit().equals( "m" ) ) {
9194                 return false;
9195             }
9196             if ( !d.getPoints().get( 0 ).getGeodeticDatum().equals( "WGS84" ) ) {
9197                 return false;
9198             }
9199             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "47.48148427110029" ) ) {
9200                 return false;
9201             }
9202             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "8.768951296806335" ) ) {
9203                 return false;
9204             }
9205             n = t1.getNode( "node a" );
9206             if ( !n.getNodeData().isHasDistribution() ) {
9207                 return false;
9208             }
9209             if ( n.getNodeData().getDistributions().size() != 2 ) {
9210                 return false;
9211             }
9212             d = n.getNodeData().getDistribution( 1 );
9213             if ( !d.getDesc().equals( "San Diego" ) ) {
9214                 return false;
9215             }
9216             if ( d.getPoints().size() != 1 ) {
9217                 return false;
9218             }
9219             if ( d.getPolygons() != null ) {
9220                 return false;
9221             }
9222             if ( !d.getPoints().get( 0 ).getAltitude().toString().equals( "104" ) ) {
9223                 return false;
9224             }
9225             if ( !d.getPoints().get( 0 ).getAltiudeUnit().equals( "m" ) ) {
9226                 return false;
9227             }
9228             if ( !d.getPoints().get( 0 ).getGeodeticDatum().equals( "WGS84" ) ) {
9229                 return false;
9230             }
9231             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "32.880933" ) ) {
9232                 return false;
9233             }
9234             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "-117.217543" ) ) {
9235                 return false;
9236             }
9237             n = t1.getNode( "node bb" );
9238             if ( !n.getNodeData().isHasDistribution() ) {
9239                 return false;
9240             }
9241             if ( n.getNodeData().getDistributions().size() != 1 ) {
9242                 return false;
9243             }
9244             d = n.getNodeData().getDistribution( 0 );
9245             if ( d.getPoints().size() != 3 ) {
9246                 return false;
9247             }
9248             if ( d.getPolygons().size() != 2 ) {
9249                 return false;
9250             }
9251             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "1" ) ) {
9252                 return false;
9253             }
9254             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "2" ) ) {
9255                 return false;
9256             }
9257             if ( !d.getPoints().get( 1 ).getLatitude().toString().equals( "3" ) ) {
9258                 return false;
9259             }
9260             if ( !d.getPoints().get( 1 ).getLongitude().toString().equals( "4" ) ) {
9261                 return false;
9262             }
9263             if ( !d.getPoints().get( 2 ).getLatitude().toString().equals( "5" ) ) {
9264                 return false;
9265             }
9266             if ( !d.getPoints().get( 2 ).getLongitude().toString().equals( "6" ) ) {
9267                 return false;
9268             }
9269             Polygon p = d.getPolygons().get( 0 );
9270             if ( p.getPoints().size() != 3 ) {
9271                 return false;
9272             }
9273             if ( !p.getPoints().get( 0 ).getLatitude().toString().equals( "0.1" ) ) {
9274                 return false;
9275             }
9276             if ( !p.getPoints().get( 0 ).getLongitude().toString().equals( "0.2" ) ) {
9277                 return false;
9278             }
9279             if ( !p.getPoints().get( 0 ).getAltitude().toString().equals( "10" ) ) {
9280                 return false;
9281             }
9282             if ( !p.getPoints().get( 2 ).getLatitude().toString().equals( "0.5" ) ) {
9283                 return false;
9284             }
9285             if ( !p.getPoints().get( 2 ).getLongitude().toString().equals( "0.6" ) ) {
9286                 return false;
9287             }
9288             if ( !p.getPoints().get( 2 ).getAltitude().toString().equals( "30" ) ) {
9289                 return false;
9290             }
9291             p = d.getPolygons().get( 1 );
9292             if ( p.getPoints().size() != 3 ) {
9293                 return false;
9294             }
9295             if ( !p.getPoints().get( 0 ).getLatitude().toString().equals( "1.49348902489947473" ) ) {
9296                 return false;
9297             }
9298             if ( !p.getPoints().get( 0 ).getLongitude().toString().equals( "2.567489393947847492" ) ) {
9299                 return false;
9300             }
9301             if ( !p.getPoints().get( 0 ).getAltitude().toString().equals( "10" ) ) {
9302                 return false;
9303             }
9304             // Roundtrip:
9305             final StringBuffer t1_sb = new StringBuffer( t1.toPhyloXML( 0 ) );
9306             final Phylogeny[] rt = factory.create( t1_sb, xml_parser );
9307             if ( rt.length != 1 ) {
9308                 return false;
9309             }
9310             final Phylogeny t1_rt = rt[ 0 ];
9311             n = t1_rt.getNode( "root node" );
9312             if ( !n.getNodeData().isHasDistribution() ) {
9313                 return false;
9314             }
9315             if ( n.getNodeData().getDistributions().size() != 1 ) {
9316                 return false;
9317             }
9318             d = n.getNodeData().getDistribution();
9319             if ( !d.getDesc().equals( "Hirschweg 38" ) ) {
9320                 return false;
9321             }
9322             if ( d.getPoints().size() != 1 ) {
9323                 return false;
9324             }
9325             if ( d.getPolygons() != null ) {
9326                 return false;
9327             }
9328             if ( !d.getPoints().get( 0 ).getAltitude().toString().equals( "472" ) ) {
9329                 return false;
9330             }
9331             if ( !d.getPoints().get( 0 ).getAltiudeUnit().equals( "m" ) ) {
9332                 return false;
9333             }
9334             if ( !d.getPoints().get( 0 ).getGeodeticDatum().equals( "WGS84" ) ) {
9335                 return false;
9336             }
9337             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "47.48148427110029" ) ) {
9338                 return false;
9339             }
9340             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "8.768951296806335" ) ) {
9341                 return false;
9342             }
9343             n = t1_rt.getNode( "node a" );
9344             if ( !n.getNodeData().isHasDistribution() ) {
9345                 return false;
9346             }
9347             if ( n.getNodeData().getDistributions().size() != 2 ) {
9348                 return false;
9349             }
9350             d = n.getNodeData().getDistribution( 1 );
9351             if ( !d.getDesc().equals( "San Diego" ) ) {
9352                 return false;
9353             }
9354             if ( d.getPoints().size() != 1 ) {
9355                 return false;
9356             }
9357             if ( d.getPolygons() != null ) {
9358                 return false;
9359             }
9360             if ( !d.getPoints().get( 0 ).getAltitude().toString().equals( "104" ) ) {
9361                 return false;
9362             }
9363             if ( !d.getPoints().get( 0 ).getAltiudeUnit().equals( "m" ) ) {
9364                 return false;
9365             }
9366             if ( !d.getPoints().get( 0 ).getGeodeticDatum().equals( "WGS84" ) ) {
9367                 return false;
9368             }
9369             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "32.880933" ) ) {
9370                 return false;
9371             }
9372             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "-117.217543" ) ) {
9373                 return false;
9374             }
9375             n = t1_rt.getNode( "node bb" );
9376             if ( !n.getNodeData().isHasDistribution() ) {
9377                 return false;
9378             }
9379             if ( n.getNodeData().getDistributions().size() != 1 ) {
9380                 return false;
9381             }
9382             d = n.getNodeData().getDistribution( 0 );
9383             if ( d.getPoints().size() != 3 ) {
9384                 return false;
9385             }
9386             if ( d.getPolygons().size() != 2 ) {
9387                 return false;
9388             }
9389             if ( !d.getPoints().get( 0 ).getLatitude().toString().equals( "1" ) ) {
9390                 return false;
9391             }
9392             if ( !d.getPoints().get( 0 ).getLongitude().toString().equals( "2" ) ) {
9393                 return false;
9394             }
9395             if ( !d.getPoints().get( 1 ).getLatitude().toString().equals( "3" ) ) {
9396                 return false;
9397             }
9398             if ( !d.getPoints().get( 1 ).getLongitude().toString().equals( "4" ) ) {
9399                 return false;
9400             }
9401             if ( !d.getPoints().get( 2 ).getLatitude().toString().equals( "5" ) ) {
9402                 return false;
9403             }
9404             if ( !d.getPoints().get( 2 ).getLongitude().toString().equals( "6" ) ) {
9405                 return false;
9406             }
9407             p = d.getPolygons().get( 0 );
9408             if ( p.getPoints().size() != 3 ) {
9409                 return false;
9410             }
9411             if ( !p.getPoints().get( 0 ).getLatitude().toString().equals( "0.1" ) ) {
9412                 return false;
9413             }
9414             if ( !p.getPoints().get( 0 ).getLongitude().toString().equals( "0.2" ) ) {
9415                 return false;
9416             }
9417             if ( !p.getPoints().get( 0 ).getAltitude().toString().equals( "10" ) ) {
9418                 return false;
9419             }
9420             if ( !p.getPoints().get( 2 ).getLatitude().toString().equals( "0.5" ) ) {
9421                 return false;
9422             }
9423             if ( !p.getPoints().get( 2 ).getLongitude().toString().equals( "0.6" ) ) {
9424                 return false;
9425             }
9426             if ( !p.getPoints().get( 2 ).getAltitude().toString().equals( "30" ) ) {
9427                 return false;
9428             }
9429             p = d.getPolygons().get( 1 );
9430             if ( p.getPoints().size() != 3 ) {
9431                 return false;
9432             }
9433             if ( !p.getPoints().get( 0 ).getLatitude().toString().equals( "1.49348902489947473" ) ) {
9434                 return false;
9435             }
9436             if ( !p.getPoints().get( 0 ).getLongitude().toString().equals( "2.567489393947847492" ) ) {
9437                 return false;
9438             }
9439             if ( !p.getPoints().get( 0 ).getAltitude().toString().equals( "10" ) ) {
9440                 return false;
9441             }
9442         }
9443         catch ( final Exception e ) {
9444             e.printStackTrace( System.out );
9445             return false;
9446         }
9447         return true;
9448     }
9449
9450     private static boolean testPostOrderIterator() {
9451         try {
9452             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9453             final Phylogeny t0 = factory.create( "((A,B)ab,(C,D)cd)r", new NHXParser() )[ 0 ];
9454             PhylogenyNodeIterator it0;
9455             for( it0 = t0.iteratorPostorder(); it0.hasNext(); ) {
9456                 it0.next();
9457             }
9458             for( it0.reset(); it0.hasNext(); ) {
9459                 it0.next();
9460             }
9461             final Phylogeny t1 = factory.create( "(((A,B)ab,(C,D)cd)abcd,((E,F)ef,(G,H)gh)efgh)r", new NHXParser() )[ 0 ];
9462             final PhylogenyNodeIterator it = t1.iteratorPostorder();
9463             if ( !it.next().getName().equals( "A" ) ) {
9464                 return false;
9465             }
9466             if ( !it.next().getName().equals( "B" ) ) {
9467                 return false;
9468             }
9469             if ( !it.next().getName().equals( "ab" ) ) {
9470                 return false;
9471             }
9472             if ( !it.next().getName().equals( "C" ) ) {
9473                 return false;
9474             }
9475             if ( !it.next().getName().equals( "D" ) ) {
9476                 return false;
9477             }
9478             if ( !it.next().getName().equals( "cd" ) ) {
9479                 return false;
9480             }
9481             if ( !it.next().getName().equals( "abcd" ) ) {
9482                 return false;
9483             }
9484             if ( !it.next().getName().equals( "E" ) ) {
9485                 return false;
9486             }
9487             if ( !it.next().getName().equals( "F" ) ) {
9488                 return false;
9489             }
9490             if ( !it.next().getName().equals( "ef" ) ) {
9491                 return false;
9492             }
9493             if ( !it.next().getName().equals( "G" ) ) {
9494                 return false;
9495             }
9496             if ( !it.next().getName().equals( "H" ) ) {
9497                 return false;
9498             }
9499             if ( !it.next().getName().equals( "gh" ) ) {
9500                 return false;
9501             }
9502             if ( !it.next().getName().equals( "efgh" ) ) {
9503                 return false;
9504             }
9505             if ( !it.next().getName().equals( "r" ) ) {
9506                 return false;
9507             }
9508             if ( it.hasNext() ) {
9509                 return false;
9510             }
9511         }
9512         catch ( final Exception e ) {
9513             e.printStackTrace( System.out );
9514             return false;
9515         }
9516         return true;
9517     }
9518
9519     private static boolean testPreOrderIterator() {
9520         try {
9521             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9522             final Phylogeny t0 = factory.create( "((A,B)ab,(C,D)cd)r", new NHXParser() )[ 0 ];
9523             PhylogenyNodeIterator it0;
9524             for( it0 = t0.iteratorPreorder(); it0.hasNext(); ) {
9525                 it0.next();
9526             }
9527             for( it0.reset(); it0.hasNext(); ) {
9528                 it0.next();
9529             }
9530             PhylogenyNodeIterator it = t0.iteratorPreorder();
9531             if ( !it.next().getName().equals( "r" ) ) {
9532                 return false;
9533             }
9534             if ( !it.next().getName().equals( "ab" ) ) {
9535                 return false;
9536             }
9537             if ( !it.next().getName().equals( "A" ) ) {
9538                 return false;
9539             }
9540             if ( !it.next().getName().equals( "B" ) ) {
9541                 return false;
9542             }
9543             if ( !it.next().getName().equals( "cd" ) ) {
9544                 return false;
9545             }
9546             if ( !it.next().getName().equals( "C" ) ) {
9547                 return false;
9548             }
9549             if ( !it.next().getName().equals( "D" ) ) {
9550                 return false;
9551             }
9552             if ( it.hasNext() ) {
9553                 return false;
9554             }
9555             final Phylogeny t1 = factory.create( "(((A,B)ab,(C,D)cd)abcd,((E,F)ef,(G,H)gh)efgh)r", new NHXParser() )[ 0 ];
9556             it = t1.iteratorPreorder();
9557             if ( !it.next().getName().equals( "r" ) ) {
9558                 return false;
9559             }
9560             if ( !it.next().getName().equals( "abcd" ) ) {
9561                 return false;
9562             }
9563             if ( !it.next().getName().equals( "ab" ) ) {
9564                 return false;
9565             }
9566             if ( !it.next().getName().equals( "A" ) ) {
9567                 return false;
9568             }
9569             if ( !it.next().getName().equals( "B" ) ) {
9570                 return false;
9571             }
9572             if ( !it.next().getName().equals( "cd" ) ) {
9573                 return false;
9574             }
9575             if ( !it.next().getName().equals( "C" ) ) {
9576                 return false;
9577             }
9578             if ( !it.next().getName().equals( "D" ) ) {
9579                 return false;
9580             }
9581             if ( !it.next().getName().equals( "efgh" ) ) {
9582                 return false;
9583             }
9584             if ( !it.next().getName().equals( "ef" ) ) {
9585                 return false;
9586             }
9587             if ( !it.next().getName().equals( "E" ) ) {
9588                 return false;
9589             }
9590             if ( !it.next().getName().equals( "F" ) ) {
9591                 return false;
9592             }
9593             if ( !it.next().getName().equals( "gh" ) ) {
9594                 return false;
9595             }
9596             if ( !it.next().getName().equals( "G" ) ) {
9597                 return false;
9598             }
9599             if ( !it.next().getName().equals( "H" ) ) {
9600                 return false;
9601             }
9602             if ( it.hasNext() ) {
9603                 return false;
9604             }
9605         }
9606         catch ( final Exception e ) {
9607             e.printStackTrace( System.out );
9608             return false;
9609         }
9610         return true;
9611     }
9612
9613     private static boolean testPropertiesMap() {
9614         try {
9615             final PropertiesMap pm = new PropertiesMap();
9616             final Property p0 = new Property( "dimensions:diameter", "1", "metric:mm", "xsd:decimal", AppliesTo.NODE );
9617             final Property p1 = new Property( "dimensions:length", "2", "metric:mm", "xsd:decimal", AppliesTo.NODE );
9618             final Property p2 = new Property( "something:else",
9619                                               "?",
9620                                               "improbable:research",
9621                                               "xsd:decimal",
9622                                               AppliesTo.NODE );
9623             pm.addProperty( p0 );
9624             pm.addProperty( p1 );
9625             pm.addProperty( p2 );
9626             if ( !pm.getProperty( "dimensions:diameter" ).getValue().equals( "1" ) ) {
9627                 return false;
9628             }
9629             if ( !pm.getProperty( "dimensions:length" ).getValue().equals( "2" ) ) {
9630                 return false;
9631             }
9632             if ( pm.getProperties().size() != 3 ) {
9633                 return false;
9634             }
9635             if ( pm.getPropertiesWithGivenReferencePrefix( "dimensions" ).size() != 2 ) {
9636                 return false;
9637             }
9638             if ( pm.getPropertiesWithGivenReferencePrefix( "something" ).size() != 1 ) {
9639                 return false;
9640             }
9641             if ( pm.getProperties().size() != 3 ) {
9642                 return false;
9643             }
9644             pm.removeProperty( "dimensions:diameter" );
9645             if ( pm.getProperties().size() != 2 ) {
9646                 return false;
9647             }
9648             if ( pm.getPropertiesWithGivenReferencePrefix( "dimensions" ).size() != 1 ) {
9649                 return false;
9650             }
9651             if ( pm.getPropertiesWithGivenReferencePrefix( "something" ).size() != 1 ) {
9652                 return false;
9653             }
9654         }
9655         catch ( final Exception e ) {
9656             e.printStackTrace( System.out );
9657             return false;
9658         }
9659         return true;
9660     }
9661
9662     private static boolean testProteinId() {
9663         try {
9664             final ProteinId id1 = new ProteinId( "a" );
9665             final ProteinId id2 = new ProteinId( "a" );
9666             final ProteinId id3 = new ProteinId( "A" );
9667             final ProteinId id4 = new ProteinId( "b" );
9668             if ( !id1.equals( id1 ) ) {
9669                 return false;
9670             }
9671             if ( id1.getId().equals( "x" ) ) {
9672                 return false;
9673             }
9674             if ( id1.getId().equals( null ) ) {
9675                 return false;
9676             }
9677             if ( !id1.equals( id2 ) ) {
9678                 return false;
9679             }
9680             if ( id1.equals( id3 ) ) {
9681                 return false;
9682             }
9683             if ( id1.hashCode() != id1.hashCode() ) {
9684                 return false;
9685             }
9686             if ( id1.hashCode() != id2.hashCode() ) {
9687                 return false;
9688             }
9689             if ( id1.hashCode() == id3.hashCode() ) {
9690                 return false;
9691             }
9692             if ( id1.compareTo( id1 ) != 0 ) {
9693                 return false;
9694             }
9695             if ( id1.compareTo( id2 ) != 0 ) {
9696                 return false;
9697             }
9698             if ( id1.compareTo( id3 ) != 0 ) {
9699                 return false;
9700             }
9701             if ( id1.compareTo( id4 ) >= 0 ) {
9702                 return false;
9703             }
9704             if ( id4.compareTo( id1 ) <= 0 ) {
9705                 return false;
9706             }
9707             if ( !id4.getId().equals( "b" ) ) {
9708                 return false;
9709             }
9710             final ProteinId id5 = new ProteinId( " C " );
9711             if ( !id5.getId().equals( "C" ) ) {
9712                 return false;
9713             }
9714             if ( id5.equals( id1 ) ) {
9715                 return false;
9716             }
9717         }
9718         catch ( final Exception e ) {
9719             e.printStackTrace( System.out );
9720             return false;
9721         }
9722         return true;
9723     }
9724
9725     private static boolean testReIdMethods() {
9726         try {
9727             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9728             final Phylogeny p = factory.create( "((1,2)A,(((X,Y,Z)a,b)3)B,(4,5,6)C)r", new NHXParser() )[ 0 ];
9729             final long count = PhylogenyNode.getNodeCount();
9730             p.levelOrderReID();
9731             if ( p.getNode( "r" ).getId() != count ) {
9732                 return false;
9733             }
9734             if ( p.getNode( "A" ).getId() != ( count + 1 ) ) {
9735                 return false;
9736             }
9737             if ( p.getNode( "B" ).getId() != ( count + 1 ) ) {
9738                 return false;
9739             }
9740             if ( p.getNode( "C" ).getId() != ( count + 1 ) ) {
9741                 return false;
9742             }
9743             if ( p.getNode( "1" ).getId() != ( count + 2 ) ) {
9744                 return false;
9745             }
9746             if ( p.getNode( "2" ).getId() != ( count + 2 ) ) {
9747                 return false;
9748             }
9749             if ( p.getNode( "3" ).getId() != ( count + 2 ) ) {
9750                 return false;
9751             }
9752             if ( p.getNode( "4" ).getId() != ( count + 2 ) ) {
9753                 return false;
9754             }
9755             if ( p.getNode( "5" ).getId() != ( count + 2 ) ) {
9756                 return false;
9757             }
9758             if ( p.getNode( "6" ).getId() != ( count + 2 ) ) {
9759                 return false;
9760             }
9761             if ( p.getNode( "a" ).getId() != ( count + 3 ) ) {
9762                 return false;
9763             }
9764             if ( p.getNode( "b" ).getId() != ( count + 3 ) ) {
9765                 return false;
9766             }
9767             if ( p.getNode( "X" ).getId() != ( count + 4 ) ) {
9768                 return false;
9769             }
9770             if ( p.getNode( "Y" ).getId() != ( count + 4 ) ) {
9771                 return false;
9772             }
9773             if ( p.getNode( "Z" ).getId() != ( count + 4 ) ) {
9774                 return false;
9775             }
9776         }
9777         catch ( final Exception e ) {
9778             e.printStackTrace( System.out );
9779             return false;
9780         }
9781         return true;
9782     }
9783
9784     private static boolean testRerooting() {
9785         try {
9786             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9787             final Phylogeny t1 = factory.create( "((A:1,B:2)AB:1[&&NHX:B=55],(C:3,D:5)CD:3[&&NHX:B=10])ABCD:0.5",
9788                                                  new NHXParser() )[ 0 ];
9789             if ( !t1.isRooted() ) {
9790                 return false;
9791             }
9792             t1.reRoot( t1.getNode( "D" ) );
9793             t1.reRoot( t1.getNode( "CD" ) );
9794             t1.reRoot( t1.getNode( "A" ) );
9795             t1.reRoot( t1.getNode( "B" ) );
9796             t1.reRoot( t1.getNode( "AB" ) );
9797             t1.reRoot( t1.getNode( "D" ) );
9798             t1.reRoot( t1.getNode( "C" ) );
9799             t1.reRoot( t1.getNode( "CD" ) );
9800             t1.reRoot( t1.getNode( "A" ) );
9801             t1.reRoot( t1.getNode( "B" ) );
9802             t1.reRoot( t1.getNode( "AB" ) );
9803             t1.reRoot( t1.getNode( "D" ) );
9804             t1.reRoot( t1.getNode( "D" ) );
9805             t1.reRoot( t1.getNode( "C" ) );
9806             t1.reRoot( t1.getNode( "A" ) );
9807             t1.reRoot( t1.getNode( "B" ) );
9808             t1.reRoot( t1.getNode( "AB" ) );
9809             t1.reRoot( t1.getNode( "C" ) );
9810             t1.reRoot( t1.getNode( "D" ) );
9811             t1.reRoot( t1.getNode( "CD" ) );
9812             t1.reRoot( t1.getNode( "D" ) );
9813             t1.reRoot( t1.getNode( "A" ) );
9814             t1.reRoot( t1.getNode( "B" ) );
9815             t1.reRoot( t1.getNode( "AB" ) );
9816             t1.reRoot( t1.getNode( "C" ) );
9817             t1.reRoot( t1.getNode( "D" ) );
9818             t1.reRoot( t1.getNode( "CD" ) );
9819             t1.reRoot( t1.getNode( "D" ) );
9820             if ( !isEqual( t1.getNode( "A" ).getDistanceToParent(), 1 ) ) {
9821                 return false;
9822             }
9823             if ( !isEqual( t1.getNode( "B" ).getDistanceToParent(), 2 ) ) {
9824                 return false;
9825             }
9826             if ( !isEqual( t1.getNode( "C" ).getDistanceToParent(), 3 ) ) {
9827                 return false;
9828             }
9829             if ( !isEqual( t1.getNode( "D" ).getDistanceToParent(), 2.5 ) ) {
9830                 return false;
9831             }
9832             if ( !isEqual( t1.getNode( "CD" ).getDistanceToParent(), 2.5 ) ) {
9833                 return false;
9834             }
9835             if ( !isEqual( t1.getNode( "AB" ).getDistanceToParent(), 4 ) ) {
9836                 return false;
9837             }
9838             final Phylogeny t2 = factory.create( "(((A:1,B:2)AB:10[&&NHX:B=55],C)ABC:3[&&NHX:B=33],D:5)ABCD:0.5",
9839                                                  new NHXParser() )[ 0 ];
9840             t2.reRoot( t2.getNode( "A" ) );
9841             t2.reRoot( t2.getNode( "D" ) );
9842             t2.reRoot( t2.getNode( "ABC" ) );
9843             t2.reRoot( t2.getNode( "A" ) );
9844             t2.reRoot( t2.getNode( "B" ) );
9845             t2.reRoot( t2.getNode( "D" ) );
9846             t2.reRoot( t2.getNode( "C" ) );
9847             t2.reRoot( t2.getNode( "ABC" ) );
9848             t2.reRoot( t2.getNode( "A" ) );
9849             t2.reRoot( t2.getNode( "B" ) );
9850             t2.reRoot( t2.getNode( "AB" ) );
9851             t2.reRoot( t2.getNode( "AB" ) );
9852             t2.reRoot( t2.getNode( "D" ) );
9853             t2.reRoot( t2.getNode( "C" ) );
9854             t2.reRoot( t2.getNode( "B" ) );
9855             t2.reRoot( t2.getNode( "AB" ) );
9856             t2.reRoot( t2.getNode( "D" ) );
9857             t2.reRoot( t2.getNode( "D" ) );
9858             t2.reRoot( t2.getNode( "ABC" ) );
9859             t2.reRoot( t2.getNode( "A" ) );
9860             t2.reRoot( t2.getNode( "B" ) );
9861             t2.reRoot( t2.getNode( "AB" ) );
9862             t2.reRoot( t2.getNode( "D" ) );
9863             t2.reRoot( t2.getNode( "C" ) );
9864             t2.reRoot( t2.getNode( "ABC" ) );
9865             t2.reRoot( t2.getNode( "A" ) );
9866             t2.reRoot( t2.getNode( "B" ) );
9867             t2.reRoot( t2.getNode( "AB" ) );
9868             t2.reRoot( t2.getNode( "D" ) );
9869             t2.reRoot( t2.getNode( "D" ) );
9870             t2.reRoot( t2.getNode( "C" ) );
9871             t2.reRoot( t2.getNode( "A" ) );
9872             t2.reRoot( t2.getNode( "B" ) );
9873             t2.reRoot( t2.getNode( "AB" ) );
9874             t2.reRoot( t2.getNode( "C" ) );
9875             t2.reRoot( t2.getNode( "D" ) );
9876             t2.reRoot( t2.getNode( "ABC" ) );
9877             t2.reRoot( t2.getNode( "D" ) );
9878             t2.reRoot( t2.getNode( "A" ) );
9879             t2.reRoot( t2.getNode( "B" ) );
9880             t2.reRoot( t2.getNode( "AB" ) );
9881             t2.reRoot( t2.getNode( "C" ) );
9882             t2.reRoot( t2.getNode( "D" ) );
9883             t2.reRoot( t2.getNode( "ABC" ) );
9884             t2.reRoot( t2.getNode( "D" ) );
9885             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9886                 return false;
9887             }
9888             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9889                 return false;
9890             }
9891             t2.reRoot( t2.getNode( "ABC" ) );
9892             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9893                 return false;
9894             }
9895             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9896                 return false;
9897             }
9898             t2.reRoot( t2.getNode( "AB" ) );
9899             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9900                 return false;
9901             }
9902             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9903                 return false;
9904             }
9905             if ( !isEqual( t2.getNode( "D" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9906                 return false;
9907             }
9908             t2.reRoot( t2.getNode( "AB" ) );
9909             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9910                 return false;
9911             }
9912             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9913                 return false;
9914             }
9915             if ( !isEqual( t2.getNode( "D" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9916                 return false;
9917             }
9918             t2.reRoot( t2.getNode( "D" ) );
9919             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9920                 return false;
9921             }
9922             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9923                 return false;
9924             }
9925             t2.reRoot( t2.getNode( "ABC" ) );
9926             if ( !isEqual( t2.getNode( "AB" ).getBranchData().getConfidence( 0 ).getValue(), 55 ) ) {
9927                 return false;
9928             }
9929             if ( !isEqual( t2.getNode( "ABC" ).getBranchData().getConfidence( 0 ).getValue(), 33 ) ) {
9930                 return false;
9931             }
9932             final Phylogeny t3 = factory.create( "(A[&&NHX:B=10],B[&&NHX:B=20],C[&&NHX:B=30],D[&&NHX:B=40])",
9933                                                  new NHXParser() )[ 0 ];
9934             t3.reRoot( t3.getNode( "B" ) );
9935             if ( t3.getNode( "B" ).getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9936                 return false;
9937             }
9938             if ( t3.getNode( "A" ).getParent().getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9939                 return false;
9940             }
9941             if ( t3.getNode( "A" ).getParent().getNumberOfDescendants() != 3 ) {
9942                 return false;
9943             }
9944             t3.reRoot( t3.getNode( "B" ) );
9945             if ( t3.getNode( "B" ).getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9946                 return false;
9947             }
9948             if ( t3.getNode( "A" ).getParent().getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9949                 return false;
9950             }
9951             if ( t3.getNode( "A" ).getParent().getNumberOfDescendants() != 3 ) {
9952                 return false;
9953             }
9954             t3.reRoot( t3.getRoot() );
9955             if ( t3.getNode( "B" ).getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9956                 return false;
9957             }
9958             if ( t3.getNode( "A" ).getParent().getBranchData().getConfidence( 0 ).getValue() != 20 ) {
9959                 return false;
9960             }
9961             if ( t3.getNode( "A" ).getParent().getNumberOfDescendants() != 3 ) {
9962                 return false;
9963             }
9964         }
9965         catch ( final Exception e ) {
9966             e.printStackTrace( System.out );
9967             return false;
9968         }
9969         return true;
9970     }
9971
9972     private static boolean testSDIse() {
9973         try {
9974             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
9975             final Phylogeny species1 = factory.create( "[&&NHX:S=yeast]", new NHXParser() )[ 0 ];
9976             final Phylogeny gene1 = factory.create( "(A1[&&NHX:S=yeast],A2[&&NHX:S=yeast])", new NHXParser() )[ 0 ];
9977             gene1.setRooted( true );
9978             species1.setRooted( true );
9979             final SDI sdi = new SDI( gene1, species1 );
9980             if ( !gene1.getRoot().isDuplication() ) {
9981                 return false;
9982             }
9983             final Phylogeny species2 = factory
9984                     .create( "(((([&&NHX:S=A],[&&NHX:S=B]),[&&NHX:S=C]),[&&NHX:S=D]),([&&NHX:S=E],[&&NHX:S=F]))",
9985                              new NHXParser() )[ 0 ];
9986             final Phylogeny gene2 = factory
9987                     .create( "(((([&&NHX:S=A],[&&NHX:S=B])ab,[&&NHX:S=C])abc,[&&NHX:S=D])abcd,([&&NHX:S=E],[&&NHX:S=F])ef)r",
9988                              new NHXParser() )[ 0 ];
9989             species2.setRooted( true );
9990             gene2.setRooted( true );
9991             final SDI sdi2 = new SDI( gene2, species2 );
9992             if ( sdi2.getDuplicationsSum() != 0 ) {
9993                 return false;
9994             }
9995             if ( !gene2.getNode( "ab" ).isSpeciation() ) {
9996                 return false;
9997             }
9998             if ( !gene2.getNode( "ab" ).isHasAssignedEvent() ) {
9999                 return false;
10000             }
10001             if ( !gene2.getNode( "abc" ).isSpeciation() ) {
10002                 return false;
10003             }
10004             if ( !gene2.getNode( "abc" ).isHasAssignedEvent() ) {
10005                 return false;
10006             }
10007             if ( !gene2.getNode( "r" ).isSpeciation() ) {
10008                 return false;
10009             }
10010             if ( !gene2.getNode( "r" ).isHasAssignedEvent() ) {
10011                 return false;
10012             }
10013             final Phylogeny species3 = factory
10014                     .create( "(((([&&NHX:S=A],[&&NHX:S=B]),[&&NHX:S=C]),[&&NHX:S=D]),([&&NHX:S=E],[&&NHX:S=F]))",
10015                              new NHXParser() )[ 0 ];
10016             final Phylogeny gene3 = factory
10017                     .create( "(((([&&NHX:S=A],[&&NHX:S=A])aa,[&&NHX:S=C])abc,[&&NHX:S=D])abcd,([&&NHX:S=E],[&&NHX:S=F])ef)r",
10018                              new NHXParser() )[ 0 ];
10019             species3.setRooted( true );
10020             gene3.setRooted( true );
10021             final SDI sdi3 = new SDI( gene3, species3 );
10022             if ( sdi3.getDuplicationsSum() != 1 ) {
10023                 return false;
10024             }
10025             if ( !gene3.getNode( "aa" ).isDuplication() ) {
10026                 return false;
10027             }
10028             if ( !gene3.getNode( "aa" ).isHasAssignedEvent() ) {
10029                 return false;
10030             }
10031             final Phylogeny species4 = factory
10032                     .create( "(((([&&NHX:S=A],[&&NHX:S=B]),[&&NHX:S=C]),[&&NHX:S=D]),([&&NHX:S=E],[&&NHX:S=F]))",
10033                              new NHXParser() )[ 0 ];
10034             final Phylogeny gene4 = factory
10035                     .create( "(((([&&NHX:S=A],[&&NHX:S=C])ac,[&&NHX:S=B])abc,[&&NHX:S=D])abcd,([&&NHX:S=E],[&&NHX:S=F])ef)r",
10036                              new NHXParser() )[ 0 ];
10037             species4.setRooted( true );
10038             gene4.setRooted( true );
10039             final SDI sdi4 = new SDI( gene4, species4 );
10040             if ( sdi4.getDuplicationsSum() != 1 ) {
10041                 return false;
10042             }
10043             if ( !gene4.getNode( "ac" ).isSpeciation() ) {
10044                 return false;
10045             }
10046             if ( !gene4.getNode( "abc" ).isDuplication() ) {
10047                 return false;
10048             }
10049             if ( gene4.getNode( "abcd" ).isDuplication() ) {
10050                 return false;
10051             }
10052             if ( species4.getNumberOfExternalNodes() != 6 ) {
10053                 return false;
10054             }
10055             if ( gene4.getNumberOfExternalNodes() != 6 ) {
10056                 return false;
10057             }
10058             final Phylogeny species5 = factory
10059                     .create( "(((([&&NHX:S=A],[&&NHX:S=B]),[&&NHX:S=C]),[&&NHX:S=D]),([&&NHX:S=E],[&&NHX:S=F]))",
10060                              new NHXParser() )[ 0 ];
10061             final Phylogeny gene5 = factory
10062                     .create( "(((([&&NHX:S=A],[&&NHX:S=D])ad,[&&NHX:S=C])adc,[&&NHX:S=B])abcd,([&&NHX:S=E],[&&NHX:S=F])ef)r",
10063                              new NHXParser() )[ 0 ];
10064             species5.setRooted( true );
10065             gene5.setRooted( true );
10066             final SDI sdi5 = new SDI( gene5, species5 );
10067             if ( sdi5.getDuplicationsSum() != 2 ) {
10068                 return false;
10069             }
10070             if ( !gene5.getNode( "ad" ).isSpeciation() ) {
10071                 return false;
10072             }
10073             if ( !gene5.getNode( "adc" ).isDuplication() ) {
10074                 return false;
10075             }
10076             if ( !gene5.getNode( "abcd" ).isDuplication() ) {
10077                 return false;
10078             }
10079             if ( species5.getNumberOfExternalNodes() != 6 ) {
10080                 return false;
10081             }
10082             if ( gene5.getNumberOfExternalNodes() != 6 ) {
10083                 return false;
10084             }
10085             // Trees from Louxin Zhang 1997 "On a Mirkin-Muchnik-Smith
10086             // Conjecture for Comparing Molecular Phylogenies"
10087             // J. of Comput Bio. Vol. 4, No 2, pp.177-187
10088             final Phylogeny species6 = factory
10089                     .create( "(((1:[&&NHX:S=1],5:[&&NHX:S=5])1-5,((4:[&&NHX:S=4],6:[&&NHX:S=6])4-6,2:[&&NHX:S=2])4-6-2)1-5-4-6-2,"
10090                                      + "((9:[&&NHX:S=9],3:[&&NHX:S=3])9-3,(8:[&&NHX:S=8],7:[&&NHX:S=7])8-7)9-3-8-7)",
10091                              new NHXParser() )[ 0 ];
10092             final Phylogeny gene6 = factory
10093                     .create( "(((1:0.1[&&NHX:S=1],2:0.1[&&NHX:S=2])1-2:0.1,3:0.1[&&NHX:S=3])1-2-3:0.1,"
10094                                      + "((4:0.1[&&NHX:S=4],(5:0.1[&&NHX:S=5],6:0.1[&&NHX:S=6])5-6:0.1)4-5-6:0.1,"
10095                                      + "(7:0.1[&&NHX:S=7],(8:0.1[&&NHX:S=8],9:0.1[&&NHX:S=9])8-9:0.1)7-8-9:0.1)4-5-6-7-8-9:0.1)r;",
10096                              new NHXParser() )[ 0 ];
10097             species6.setRooted( true );
10098             gene6.setRooted( true );
10099             final SDI sdi6 = new SDI( gene6, species6 );
10100             if ( sdi6.getDuplicationsSum() != 3 ) {
10101                 return false;
10102             }
10103             if ( !gene6.getNode( "r" ).isDuplication() ) {
10104                 return false;
10105             }
10106             if ( !gene6.getNode( "4-5-6" ).isDuplication() ) {
10107                 return false;
10108             }
10109             if ( !gene6.getNode( "7-8-9" ).isDuplication() ) {
10110                 return false;
10111             }
10112             if ( !gene6.getNode( "1-2" ).isSpeciation() ) {
10113                 return false;
10114             }
10115             if ( !gene6.getNode( "1-2-3" ).isSpeciation() ) {
10116                 return false;
10117             }
10118             if ( !gene6.getNode( "5-6" ).isSpeciation() ) {
10119                 return false;
10120             }
10121             if ( !gene6.getNode( "8-9" ).isSpeciation() ) {
10122                 return false;
10123             }
10124             if ( !gene6.getNode( "4-5-6-7-8-9" ).isSpeciation() ) {
10125                 return false;
10126             }
10127             sdi6.computeMappingCostL();
10128             if ( sdi6.computeMappingCostL() != 17 ) {
10129                 return false;
10130             }
10131             if ( species6.getNumberOfExternalNodes() != 9 ) {
10132                 return false;
10133             }
10134             if ( gene6.getNumberOfExternalNodes() != 9 ) {
10135                 return false;
10136             }
10137             final Phylogeny species7 = Test.createPhylogeny( "(((((((" + "([&&NHX:S=a1],[&&NHX:S=a2]),"
10138                     + "([&&NHX:S=b1],[&&NHX:S=b2])" + "),[&&NHX:S=x]),(" + "([&&NHX:S=m1],[&&NHX:S=m2]),"
10139                     + "([&&NHX:S=n1],[&&NHX:S=n2])" + ")),(" + "([&&NHX:S=i1],[&&NHX:S=i2]),"
10140                     + "([&&NHX:S=j1],[&&NHX:S=j2])" + ")),(" + "([&&NHX:S=e1],[&&NHX:S=e2]),"
10141                     + "([&&NHX:S=f1],[&&NHX:S=f2])" + ")),[&&NHX:S=y]),[&&NHX:S=z])" );
10142             species7.setRooted( true );
10143             final Phylogeny gene7_1 = Test
10144                     .createPhylogeny( "((((((((a1[&&NHX:S=a1],a2[&&NHX:S=a2]),b1[&&NHX:S=b1]),x[&&NHX:S=x]),m1[&&NHX:S=m1]),i1[&&NHX:S=i1]),e1[&&NHX:S=e1]),y[&&NHX:S=y]),z[&&NHX:S=z])" );
10145             gene7_1.setRooted( true );
10146             final SDI sdi7 = new SDI( gene7_1, species7 );
10147             if ( sdi7.getDuplicationsSum() != 0 ) {
10148                 return false;
10149             }
10150             if ( !Test.getEvent( gene7_1, "a1", "a2" ).isSpeciation() ) {
10151                 return false;
10152             }
10153             if ( !Test.getEvent( gene7_1, "a1", "b1" ).isSpeciation() ) {
10154                 return false;
10155             }
10156             if ( !Test.getEvent( gene7_1, "a1", "x" ).isSpeciation() ) {
10157                 return false;
10158             }
10159             if ( !Test.getEvent( gene7_1, "a1", "m1" ).isSpeciation() ) {
10160                 return false;
10161             }
10162             if ( !Test.getEvent( gene7_1, "a1", "i1" ).isSpeciation() ) {
10163                 return false;
10164             }
10165             if ( !Test.getEvent( gene7_1, "a1", "e1" ).isSpeciation() ) {
10166                 return false;
10167             }
10168             if ( !Test.getEvent( gene7_1, "a1", "y" ).isSpeciation() ) {
10169                 return false;
10170             }
10171             if ( !Test.getEvent( gene7_1, "a1", "z" ).isSpeciation() ) {
10172                 return false;
10173             }
10174             final Phylogeny gene7_2 = Test
10175                     .createPhylogeny( "(((((((((a1[&&NHX:S=a1],a2[&&NHX:S=a2]),b1[&&NHX:S=b1]),x[&&NHX:S=x]),m1[&&NHX:S=m1]),i1[&&NHX:S=i1]),j2[&&NHX:S=j2]),e1[&&NHX:S=e1]),y[&&NHX:S=y]),z[&&NHX:S=z])" );
10176             gene7_2.setRooted( true );
10177             final SDI sdi7_2 = new SDI( gene7_2, species7 );
10178             if ( sdi7_2.getDuplicationsSum() != 1 ) {
10179                 return false;
10180             }
10181             if ( !Test.getEvent( gene7_2, "a1", "a2" ).isSpeciation() ) {
10182                 return false;
10183             }
10184             if ( !Test.getEvent( gene7_2, "a1", "b1" ).isSpeciation() ) {
10185                 return false;
10186             }
10187             if ( !Test.getEvent( gene7_2, "a1", "x" ).isSpeciation() ) {
10188                 return false;
10189             }
10190             if ( !Test.getEvent( gene7_2, "a1", "m1" ).isSpeciation() ) {
10191                 return false;
10192             }
10193             if ( !Test.getEvent( gene7_2, "a1", "i1" ).isSpeciation() ) {
10194                 return false;
10195             }
10196             if ( !Test.getEvent( gene7_2, "a1", "j2" ).isDuplication() ) {
10197                 return false;
10198             }
10199             if ( !Test.getEvent( gene7_2, "a1", "e1" ).isSpeciation() ) {
10200                 return false;
10201             }
10202             if ( !Test.getEvent( gene7_2, "a1", "y" ).isSpeciation() ) {
10203                 return false;
10204             }
10205             if ( !Test.getEvent( gene7_2, "a1", "z" ).isSpeciation() ) {
10206                 return false;
10207             }
10208         }
10209         catch ( final Exception e ) {
10210             return false;
10211         }
10212         return true;
10213     }
10214
10215     private static boolean testSDIunrooted() {
10216         try {
10217             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
10218             final Phylogeny p0 = factory.create( "((((A,B)ab,(C1,C2)cc)abc,D)abcd,(E,F)ef)abcdef", new NHXParser() )[ 0 ];
10219             final List<PhylogenyBranch> l = SDIR.getBranchesInPreorder( p0 );
10220             final Iterator<PhylogenyBranch> iter = l.iterator();
10221             PhylogenyBranch br = iter.next();
10222             if ( !br.getFirstNode().getName().equals( "abcd" ) && !br.getFirstNode().getName().equals( "ef" ) ) {
10223                 return false;
10224             }
10225             if ( !br.getSecondNode().getName().equals( "abcd" ) && !br.getSecondNode().getName().equals( "ef" ) ) {
10226                 return false;
10227             }
10228             br = iter.next();
10229             if ( !br.getFirstNode().getName().equals( "abcd" ) && !br.getFirstNode().getName().equals( "abc" ) ) {
10230                 return false;
10231             }
10232             if ( !br.getSecondNode().getName().equals( "abcd" ) && !br.getSecondNode().getName().equals( "abc" ) ) {
10233                 return false;
10234             }
10235             br = iter.next();
10236             if ( !br.getFirstNode().getName().equals( "abc" ) && !br.getFirstNode().getName().equals( "ab" ) ) {
10237                 return false;
10238             }
10239             if ( !br.getSecondNode().getName().equals( "abc" ) && !br.getSecondNode().getName().equals( "ab" ) ) {
10240                 return false;
10241             }
10242             br = iter.next();
10243             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "A" ) ) {
10244                 return false;
10245             }
10246             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "A" ) ) {
10247                 return false;
10248             }
10249             br = iter.next();
10250             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "B" ) ) {
10251                 return false;
10252             }
10253             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "B" ) ) {
10254                 return false;
10255             }
10256             br = iter.next();
10257             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "abc" ) ) {
10258                 return false;
10259             }
10260             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "abc" ) ) {
10261                 return false;
10262             }
10263             br = iter.next();
10264             if ( !br.getFirstNode().getName().equals( "abc" ) && !br.getFirstNode().getName().equals( "cc" ) ) {
10265                 return false;
10266             }
10267             if ( !br.getSecondNode().getName().equals( "abc" ) && !br.getSecondNode().getName().equals( "cc" ) ) {
10268                 return false;
10269             }
10270             br = iter.next();
10271             if ( !br.getFirstNode().getName().equals( "C1" ) && !br.getFirstNode().getName().equals( "cc" ) ) {
10272                 return false;
10273             }
10274             if ( !br.getSecondNode().getName().equals( "C1" ) && !br.getSecondNode().getName().equals( "cc" ) ) {
10275                 return false;
10276             }
10277             br = iter.next();
10278             if ( !br.getFirstNode().getName().equals( "C2" ) && !br.getFirstNode().getName().equals( "cc" ) ) {
10279                 return false;
10280             }
10281             if ( !br.getSecondNode().getName().equals( "C2" ) && !br.getSecondNode().getName().equals( "cc" ) ) {
10282                 return false;
10283             }
10284             br = iter.next();
10285             if ( !br.getFirstNode().getName().equals( "abc" ) && !br.getFirstNode().getName().equals( "cc" ) ) {
10286                 return false;
10287             }
10288             if ( !br.getSecondNode().getName().equals( "abc" ) && !br.getSecondNode().getName().equals( "cc" ) ) {
10289                 return false;
10290             }
10291             br = iter.next();
10292             if ( !br.getFirstNode().getName().equals( "abc" ) && !br.getFirstNode().getName().equals( "abcd" ) ) {
10293                 return false;
10294             }
10295             if ( !br.getSecondNode().getName().equals( "abc" ) && !br.getSecondNode().getName().equals( "abcd" ) ) {
10296                 return false;
10297             }
10298             br = iter.next();
10299             if ( !br.getFirstNode().getName().equals( "abcd" ) && !br.getFirstNode().getName().equals( "D" ) ) {
10300                 return false;
10301             }
10302             if ( !br.getSecondNode().getName().equals( "abcd" ) && !br.getSecondNode().getName().equals( "D" ) ) {
10303                 return false;
10304             }
10305             br = iter.next();
10306             if ( !br.getFirstNode().getName().equals( "ef" ) && !br.getFirstNode().getName().equals( "abcd" ) ) {
10307                 return false;
10308             }
10309             if ( !br.getSecondNode().getName().equals( "ef" ) && !br.getSecondNode().getName().equals( "abcd" ) ) {
10310                 return false;
10311             }
10312             br = iter.next();
10313             if ( !br.getFirstNode().getName().equals( "ef" ) && !br.getFirstNode().getName().equals( "E" ) ) {
10314                 return false;
10315             }
10316             if ( !br.getSecondNode().getName().equals( "ef" ) && !br.getSecondNode().getName().equals( "E" ) ) {
10317                 return false;
10318             }
10319             br = iter.next();
10320             if ( !br.getFirstNode().getName().equals( "ef" ) && !br.getFirstNode().getName().equals( "F" ) ) {
10321                 return false;
10322             }
10323             if ( !br.getSecondNode().getName().equals( "ef" ) && !br.getSecondNode().getName().equals( "F" ) ) {
10324                 return false;
10325             }
10326             if ( iter.hasNext() ) {
10327                 return false;
10328             }
10329             final Phylogeny p1 = factory.create( "(C,(A,B)ab)abc", new NHXParser() )[ 0 ];
10330             final List<PhylogenyBranch> l1 = SDIR.getBranchesInPreorder( p1 );
10331             final Iterator<PhylogenyBranch> iter1 = l1.iterator();
10332             br = iter1.next();
10333             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "C" ) ) {
10334                 return false;
10335             }
10336             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "C" ) ) {
10337                 return false;
10338             }
10339             br = iter1.next();
10340             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "A" ) ) {
10341                 return false;
10342             }
10343             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "A" ) ) {
10344                 return false;
10345             }
10346             br = iter1.next();
10347             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "B" ) ) {
10348                 return false;
10349             }
10350             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "B" ) ) {
10351                 return false;
10352             }
10353             if ( iter1.hasNext() ) {
10354                 return false;
10355             }
10356             final Phylogeny p2 = factory.create( "((A,B)ab,C)abc", new NHXParser() )[ 0 ];
10357             final List<PhylogenyBranch> l2 = SDIR.getBranchesInPreorder( p2 );
10358             final Iterator<PhylogenyBranch> iter2 = l2.iterator();
10359             br = iter2.next();
10360             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "C" ) ) {
10361                 return false;
10362             }
10363             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "C" ) ) {
10364                 return false;
10365             }
10366             br = iter2.next();
10367             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "A" ) ) {
10368                 return false;
10369             }
10370             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "A" ) ) {
10371                 return false;
10372             }
10373             br = iter2.next();
10374             if ( !br.getFirstNode().getName().equals( "ab" ) && !br.getFirstNode().getName().equals( "B" ) ) {
10375                 return false;
10376             }
10377             if ( !br.getSecondNode().getName().equals( "ab" ) && !br.getSecondNode().getName().equals( "B" ) ) {
10378                 return false;
10379             }
10380             if ( iter2.hasNext() ) {
10381                 return false;
10382             }
10383             final Phylogeny species0 = factory
10384                     .create( "(((([&&NHX:S=A],[&&NHX:S=B]),[&&NHX:S=C]),[&&NHX:S=D]),([&&NHX:S=E],[&&NHX:S=F]))",
10385                              new NHXParser() )[ 0 ];
10386             final Phylogeny gene1 = factory
10387                     .create( "(((((A:0.6[&&NHX:S=A],B:0.1[&&NHX:S=B])ab:0.1,C:0.1[&&NHX:S=C])abc:0.3,D:1.0[&&NHX:S=D])abcd:0.2,E:0.1[&&NHX:S=E])abcde:0.2,F:0.2[&&NHX:S=F])",
10388                              new NHXParser() )[ 0 ];
10389             species0.setRooted( true );
10390             gene1.setRooted( true );
10391             final SDIR sdi_unrooted = new SDIR();
10392             sdi_unrooted.infer( gene1, species0, false, true, true, true, 10 );
10393             if ( sdi_unrooted.getCount() != 1 ) {
10394                 return false;
10395             }
10396             if ( sdi_unrooted.getMinimalDuplications() != 0 ) {
10397                 return false;
10398             }
10399             if ( !Test.isEqual( sdi_unrooted.getMinimalDiffInSubTreeHeights(), 0.4 ) ) {
10400                 return false;
10401             }
10402             if ( !Test.isEqual( sdi_unrooted.getMinimalTreeHeight(), 1.0 ) ) {
10403                 return false;
10404             }
10405             if ( sdi_unrooted.getMinimalMappingCost() != Integer.MAX_VALUE ) {
10406                 return false;
10407             }
10408             final Phylogeny gene2 = factory
10409                     .create( "(((((A:2.6[&&NHX:S=A],B:0.1[&&NHX:S=B])ab:0.1,C:0.1[&&NHX:S=C])abc:0.3,D:1.0[&&NHX:S=D])abcd:0.2,E:0.1[&&NHX:S=E])abcde:0.2,F:0.2[&&NHX:S=F])",
10410                              new NHXParser() )[ 0 ];
10411             gene2.setRooted( true );
10412             sdi_unrooted.infer( gene2, species0, false, false, true, true, 10 );
10413             if ( sdi_unrooted.getCount() != 1 ) {
10414                 return false;
10415             }
10416             if ( sdi_unrooted.getMinimalDuplications() != 3 ) {
10417                 return false;
10418             }
10419             if ( !Test.isEqual( sdi_unrooted.getMinimalDiffInSubTreeHeights(), 0.0 ) ) {
10420                 return false;
10421             }
10422             if ( !Test.isEqual( sdi_unrooted.getMinimalTreeHeight(), 2.0 ) ) {
10423                 return false;
10424             }
10425             if ( sdi_unrooted.getMinimalMappingCost() != Integer.MAX_VALUE ) {
10426                 return false;
10427             }
10428             final Phylogeny species6 = factory
10429                     .create( "(((1:[&&NHX:S=1],5:[&&NHX:S=5])1-5,((4:[&&NHX:S=4],6:[&&NHX:S=6])4-6,2:[&&NHX:S=2])4-6-2)1-5-4-6-2,"
10430                                      + "((9:[&&NHX:S=9],3:[&&NHX:S=3])9-3,(8:[&&NHX:S=8],7:[&&NHX:S=7])8-7)9-3-8-7)",
10431                              new NHXParser() )[ 0 ];
10432             final Phylogeny gene6 = factory
10433                     .create( "((5:0.1[&&NHX:S=5],6:0.1[&&NHX:S=6])5-6:0.05[&&NHX:S=6],(4:0.1[&&NHX:S=4],"
10434                                      + "(((1:0.1[&&NHX:S=1],2:0.1[&&NHX:S=2])1-2:0.1[&&NHX:S=2],3:0.25[&&NHX:S=3])1-2-3:0.2[&&NHX:S=2],"
10435                                      + "(7:0.1[&&NHX:S=7],(8:0.1[&&NHX:S=8],"
10436                                      + "9:0.1[&&NHX:S=9])8-9:0.1[&&NHX:S=9])7-8-9:0.1[&&NHX:S=8])"
10437                                      + "4-5-6-7-8-9:0.1[&&NHX:S=5])4-5-6:0.05[&&NHX:S=5])",
10438                              new NHXParser() )[ 0 ];
10439             species6.setRooted( true );
10440             gene6.setRooted( true );
10441             Phylogeny[] p6 = sdi_unrooted.infer( gene6, species6, false, true, true, true, 10 );
10442             if ( sdi_unrooted.getCount() != 1 ) {
10443                 return false;
10444             }
10445             if ( !Test.isEqual( sdi_unrooted.getMinimalDiffInSubTreeHeights(), 0.0 ) ) {
10446                 return false;
10447             }
10448             if ( !Test.isEqual( sdi_unrooted.getMinimalTreeHeight(), 0.375 ) ) {
10449                 return false;
10450             }
10451             if ( sdi_unrooted.getMinimalDuplications() != 3 ) {
10452                 return false;
10453             }
10454             if ( sdi_unrooted.getMinimalMappingCost() != Integer.MAX_VALUE ) {
10455                 return false;
10456             }
10457             if ( !p6[ 0 ].getRoot().isDuplication() ) {
10458                 return false;
10459             }
10460             if ( !p6[ 0 ].getNode( "4-5-6" ).isDuplication() ) {
10461                 return false;
10462             }
10463             if ( !p6[ 0 ].getNode( "7-8-9" ).isDuplication() ) {
10464                 return false;
10465             }
10466             if ( p6[ 0 ].getNode( "1-2" ).isDuplication() ) {
10467                 return false;
10468             }
10469             if ( p6[ 0 ].getNode( "1-2-3" ).isDuplication() ) {
10470                 return false;
10471             }
10472             if ( p6[ 0 ].getNode( "5-6" ).isDuplication() ) {
10473                 return false;
10474             }
10475             if ( p6[ 0 ].getNode( "8-9" ).isDuplication() ) {
10476                 return false;
10477             }
10478             if ( p6[ 0 ].getNode( "4-5-6-7-8-9" ).isDuplication() ) {
10479                 return false;
10480             }
10481             p6 = null;
10482             final Phylogeny species7 = factory
10483                     .create( "(((1:[&&NHX:S=1],5:[&&NHX:S=5])1-5,((4:[&&NHX:S=4],6:[&&NHX:S=6])4-6,2:[&&NHX:S=2])4-6-2)1-5-4-6-2,"
10484                                      + "((9:[&&NHX:S=9],3:[&&NHX:S=3])9-3,(8:[&&NHX:S=8],7:[&&NHX:S=7])8-7)9-3-8-7)",
10485                              new NHXParser() )[ 0 ];
10486             final Phylogeny gene7 = factory
10487                     .create( "((5:0.1[&&NHX:S=5],6:0.1[&&NHX:S=6])5-6:0.05[&&NHX:S=6],(4:0.1[&&NHX:S=4],"
10488                                      + "(((1:0.1[&&NHX:S=1],2:0.1[&&NHX:S=2])1-2:0.1[&&NHX:S=2],3:0.25[&&NHX:S=3])1-2-3:0.2[&&NHX:S=2],"
10489                                      + "(7:0.1[&&NHX:S=7],(8:0.1[&&NHX:S=8],"
10490                                      + "9:0.1[&&NHX:S=9])8-9:0.1[&&NHX:S=9])7-8-9:0.1[&&NHX:S=8])"
10491                                      + "4-5-6-7-8-9:0.1[&&NHX:S=5])4-5-6:0.05[&&NHX:S=5])",
10492                              new NHXParser() )[ 0 ];
10493             species7.setRooted( true );
10494             gene7.setRooted( true );
10495             Phylogeny[] p7 = sdi_unrooted.infer( gene7, species7, true, true, true, true, 10 );
10496             if ( sdi_unrooted.getCount() != 1 ) {
10497                 return false;
10498             }
10499             if ( !Test.isEqual( sdi_unrooted.getMinimalDiffInSubTreeHeights(), 0.0 ) ) {
10500                 return false;
10501             }
10502             if ( !Test.isEqual( sdi_unrooted.getMinimalTreeHeight(), 0.375 ) ) {
10503                 return false;
10504             }
10505             if ( sdi_unrooted.getMinimalDuplications() != 3 ) {
10506                 return false;
10507             }
10508             if ( sdi_unrooted.getMinimalMappingCost() != 17 ) {
10509                 return false;
10510             }
10511             if ( !p7[ 0 ].getRoot().isDuplication() ) {
10512                 return false;
10513             }
10514             if ( !p7[ 0 ].getNode( "4-5-6" ).isDuplication() ) {
10515                 return false;
10516             }
10517             if ( !p7[ 0 ].getNode( "7-8-9" ).isDuplication() ) {
10518                 return false;
10519             }
10520             if ( p7[ 0 ].getNode( "1-2" ).isDuplication() ) {
10521                 return false;
10522             }
10523             if ( p7[ 0 ].getNode( "1-2-3" ).isDuplication() ) {
10524                 return false;
10525             }
10526             if ( p7[ 0 ].getNode( "5-6" ).isDuplication() ) {
10527                 return false;
10528             }
10529             if ( p7[ 0 ].getNode( "8-9" ).isDuplication() ) {
10530                 return false;
10531             }
10532             if ( p7[ 0 ].getNode( "4-5-6-7-8-9" ).isDuplication() ) {
10533                 return false;
10534             }
10535             p7 = null;
10536             final Phylogeny species8 = factory
10537                     .create( "(((1:[&&NHX:S=1],5:[&&NHX:S=5])1-5,((4:[&&NHX:S=4],6:[&&NHX:S=6])4-6,2:[&&NHX:S=2])4-6-2)1-5-4-6-2,"
10538                                      + "((9:[&&NHX:S=9],3:[&&NHX:S=3])9-3,(8:[&&NHX:S=8],7:[&&NHX:S=7])8-7)9-3-8-7)",
10539                              new NHXParser() )[ 0 ];
10540             final Phylogeny gene8 = factory
10541                     .create( "((5:0.1[&&NHX:S=5],6:0.1[&&NHX:S=6])5-6:0.05[&&NHX:S=6],(4:0.1[&&NHX:S=4],"
10542                                      + "(((1:0.1[&&NHX:S=1],2:0.1[&&NHX:S=2])1-2:0.1[&&NHX:S=2],3:0.25[&&NHX:S=3])1-2-3:0.2[&&NHX:S=2],"
10543                                      + "(7:0.1[&&NHX:S=7],(8:0.1[&&NHX:S=8],"
10544                                      + "9:0.1[&&NHX:S=9])8-9:0.1[&&NHX:S=9])7-8-9:0.1[&&NHX:S=8])"
10545                                      + "4-5-6-7-8-9:0.1[&&NHX:S=5])4-5-6:0.05[&&NHX:S=5])",
10546                              new NHXParser() )[ 0 ];
10547             species8.setRooted( true );
10548             gene8.setRooted( true );
10549             Phylogeny[] p8 = sdi_unrooted.infer( gene8, species8, false, false, true, true, 10 );
10550             if ( sdi_unrooted.getCount() != 1 ) {
10551                 return false;
10552             }
10553             if ( !Test.isEqual( sdi_unrooted.getMinimalDiffInSubTreeHeights(), 0.0 ) ) {
10554                 return false;
10555             }
10556             if ( !Test.isEqual( sdi_unrooted.getMinimalTreeHeight(), 0.375 ) ) {
10557                 return false;
10558             }
10559             if ( sdi_unrooted.getMinimalDuplications() != 3 ) {
10560                 return false;
10561             }
10562             if ( sdi_unrooted.getMinimalMappingCost() != Integer.MAX_VALUE ) {
10563                 return false;
10564             }
10565             if ( !p8[ 0 ].getRoot().isDuplication() ) {
10566                 return false;
10567             }
10568             if ( !p8[ 0 ].getNode( "4-5-6" ).isDuplication() ) {
10569                 return false;
10570             }
10571             if ( !p8[ 0 ].getNode( "7-8-9" ).isDuplication() ) {
10572                 return false;
10573             }
10574             if ( p8[ 0 ].getNode( "1-2" ).isDuplication() ) {
10575                 return false;
10576             }
10577             if ( p8[ 0 ].getNode( "1-2-3" ).isDuplication() ) {
10578                 return false;
10579             }
10580             if ( p8[ 0 ].getNode( "5-6" ).isDuplication() ) {
10581                 return false;
10582             }
10583             if ( p8[ 0 ].getNode( "8-9" ).isDuplication() ) {
10584                 return false;
10585             }
10586             if ( p8[ 0 ].getNode( "4-5-6-7-8-9" ).isDuplication() ) {
10587                 return false;
10588             }
10589             p8 = null;
10590         }
10591         catch ( final Exception e ) {
10592             e.printStackTrace( System.out );
10593             return false;
10594         }
10595         return true;
10596     }
10597
10598     private static boolean testSequenceDbWsTools1() {
10599         try {
10600             final PhylogenyNode n = new PhylogenyNode();
10601             n.setName( "NP_001025424" );
10602             Accession acc = SequenceDbWsTools.obtainSeqAccession( n );
10603             if ( ( acc == null ) || !acc.getSource().equals( Source.REFSEQ.toString() )
10604                     || !acc.getValue().equals( "NP_001025424" ) ) {
10605                 return false;
10606             }
10607             n.setName( "340 0559 -- _NP_001025424_dsfdg15 05" );
10608             acc = SequenceDbWsTools.obtainSeqAccession( n );
10609             if ( ( acc == null ) || !acc.getSource().equals( Source.REFSEQ.toString() )
10610                     || !acc.getValue().equals( "NP_001025424" ) ) {
10611                 return false;
10612             }
10613             n.setName( "NP_001025424.1" );
10614             acc = SequenceDbWsTools.obtainSeqAccession( n );
10615             if ( ( acc == null ) || !acc.getSource().equals( Source.REFSEQ.toString() )
10616                     || !acc.getValue().equals( "NP_001025424" ) ) {
10617                 return false;
10618             }
10619             n.setName( "NM_001030253" );
10620             acc = SequenceDbWsTools.obtainSeqAccession( n );
10621             if ( ( acc == null ) || !acc.getSource().equals( Source.REFSEQ.toString() )
10622                     || !acc.getValue().equals( "NM_001030253" ) ) {
10623                 return false;
10624             }
10625             n.setName( "BCL2_HUMAN" );
10626             acc = SequenceDbWsTools.obtainSeqAccession( n );
10627             if ( ( acc == null ) || !acc.getSource().equals( Source.UNIPROT.toString() )
10628                     || !acc.getValue().equals( "BCL2_HUMAN" ) ) {
10629                 System.out.println( acc.toString() );
10630                 return false;
10631             }
10632             n.setName( "P10415" );
10633             acc = SequenceDbWsTools.obtainSeqAccession( n );
10634             if ( ( acc == null ) || !acc.getSource().equals( Source.UNIPROT.toString() )
10635                     || !acc.getValue().equals( "P10415" ) ) {
10636                 System.out.println( acc.toString() );
10637                 return false;
10638             }
10639             n.setName( " P10415 " );
10640             acc = SequenceDbWsTools.obtainSeqAccession( n );
10641             if ( ( acc == null ) || !acc.getSource().equals( Source.UNIPROT.toString() )
10642                     || !acc.getValue().equals( "P10415" ) ) {
10643                 System.out.println( acc.toString() );
10644                 return false;
10645             }
10646             n.setName( "_P10415|" );
10647             acc = SequenceDbWsTools.obtainSeqAccession( n );
10648             if ( ( acc == null ) || !acc.getSource().equals( Source.UNIPROT.toString() )
10649                     || !acc.getValue().equals( "P10415" ) ) {
10650                 System.out.println( acc.toString() );
10651                 return false;
10652             }
10653             n.setName( "AY695820" );
10654             acc = SequenceDbWsTools.obtainSeqAccession( n );
10655             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10656                     || !acc.getValue().equals( "AY695820" ) ) {
10657                 System.out.println( acc.toString() );
10658                 return false;
10659             }
10660             n.setName( "_AY695820_" );
10661             acc = SequenceDbWsTools.obtainSeqAccession( n );
10662             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10663                     || !acc.getValue().equals( "AY695820" ) ) {
10664                 System.out.println( acc.toString() );
10665                 return false;
10666             }
10667             n.setName( "AAA59452" );
10668             acc = SequenceDbWsTools.obtainSeqAccession( n );
10669             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10670                     || !acc.getValue().equals( "AAA59452" ) ) {
10671                 System.out.println( acc.toString() );
10672                 return false;
10673             }
10674             n.setName( "_AAA59452_" );
10675             acc = SequenceDbWsTools.obtainSeqAccession( n );
10676             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10677                     || !acc.getValue().equals( "AAA59452" ) ) {
10678                 System.out.println( acc.toString() );
10679                 return false;
10680             }
10681             n.setName( "AAA59452.1" );
10682             acc = SequenceDbWsTools.obtainSeqAccession( n );
10683             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10684                     || !acc.getValue().equals( "AAA59452.1" ) ) {
10685                 System.out.println( acc.toString() );
10686                 return false;
10687             }
10688             n.setName( "_AAA59452.1_" );
10689             acc = SequenceDbWsTools.obtainSeqAccession( n );
10690             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10691                     || !acc.getValue().equals( "AAA59452.1" ) ) {
10692                 System.out.println( acc.toString() );
10693                 return false;
10694             }
10695             n.setName( "GI:94894583" );
10696             acc = SequenceDbWsTools.obtainSeqAccession( n );
10697             if ( ( acc == null ) || !acc.getSource().equals( Source.GI.toString() )
10698                     || !acc.getValue().equals( "94894583" ) ) {
10699                 System.out.println( acc.toString() );
10700                 return false;
10701             }
10702             n.setName( "gi|71845847|1,4-alpha-glucan branching enzyme [Dechloromonas aromatica RCB]" );
10703             acc = SequenceDbWsTools.obtainSeqAccession( n );
10704             if ( ( acc == null ) || !acc.getSource().equals( Source.GI.toString() )
10705                     || !acc.getValue().equals( "71845847" ) ) {
10706                 System.out.println( acc.toString() );
10707                 return false;
10708             }
10709             n.setName( "gi|71845847|gb|AAZ45343.1| 1,4-alpha-glucan branching enzyme [Dechloromonas aromatica RCB]" );
10710             acc = SequenceDbWsTools.obtainSeqAccession( n );
10711             if ( ( acc == null ) || !acc.getSource().equals( Source.NCBI.toString() )
10712                     || !acc.getValue().equals( "AAZ45343.1" ) ) {
10713                 System.out.println( acc.toString() );
10714                 return false;
10715             }
10716         }
10717         catch ( final Exception e ) {
10718             return false;
10719         }
10720         return true;
10721     }
10722
10723     private static boolean testSequenceDbWsTools2() {
10724         try {
10725             final PhylogenyNode n1 = new PhylogenyNode( "NP_001025424" );
10726             SequenceDbWsTools.obtainSeqInformation( n1 );
10727             if ( !n1.getNodeData().getSequence().getName().equals( "Bcl2" ) ) {
10728                 return false;
10729             }
10730             if ( !n1.getNodeData().getTaxonomy().getScientificName().equals( "Danio rerio" ) ) {
10731                 return false;
10732             }
10733             if ( !n1.getNodeData().getSequence().getAccession().getSource().equals( Source.REFSEQ.toString() ) ) {
10734                 return false;
10735             }
10736             if ( !n1.getNodeData().getSequence().getAccession().getValue().equals( "NP_001025424" ) ) {
10737                 return false;
10738             }
10739             final PhylogenyNode n2 = new PhylogenyNode( "NM_001030253" );
10740             SequenceDbWsTools.obtainSeqInformation( n2 );
10741             if ( !n2.getNodeData().getSequence().getName()
10742                     .equals( "Danio rerio B-cell leukemia/lymphoma 2 (bcl2), mRNA" ) ) {
10743                 return false;
10744             }
10745             if ( !n2.getNodeData().getTaxonomy().getScientificName().equals( "Danio rerio" ) ) {
10746                 return false;
10747             }
10748             if ( !n2.getNodeData().getSequence().getAccession().getSource().equals( Source.REFSEQ.toString() ) ) {
10749                 return false;
10750             }
10751             if ( !n2.getNodeData().getSequence().getAccession().getValue().equals( "NM_001030253" ) ) {
10752                 return false;
10753             }
10754             final PhylogenyNode n3 = new PhylogenyNode( "NM_184234.2" );
10755             SequenceDbWsTools.obtainSeqInformation( n3 );
10756             if ( !n3.getNodeData().getSequence().getName()
10757                     .equals( "Homo sapiens RNA binding motif protein 39 (RBM39), transcript variant 1, mRNA" ) ) {
10758                 return false;
10759             }
10760             if ( !n3.getNodeData().getTaxonomy().getScientificName().equals( "Homo sapiens" ) ) {
10761                 return false;
10762             }
10763             if ( !n3.getNodeData().getSequence().getAccession().getSource().equals( Source.REFSEQ.toString() ) ) {
10764                 return false;
10765             }
10766             if ( !n3.getNodeData().getSequence().getAccession().getValue().equals( "NM_184234" ) ) {
10767                 return false;
10768             }
10769         }
10770         catch ( final IOException e ) {
10771             System.out.println();
10772             System.out.println( "the following might be due to absence internet connection:" );
10773             e.printStackTrace( System.out );
10774             return true;
10775         }
10776         catch ( final Exception e ) {
10777             e.printStackTrace();
10778             return false;
10779         }
10780         return true;
10781     }
10782
10783     private static boolean testSequenceIdParsing() {
10784         try {
10785             Accession id = SequenceAccessionTools.parseAccessorFromString( "gb_ADF31344_segmented_worms_" );
10786             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10787                     || !id.getValue().equals( "ADF31344" ) || !id.getSource().equals( "ncbi" ) ) {
10788                 if ( id != null ) {
10789                     System.out.println( "value   =" + id.getValue() );
10790                     System.out.println( "provider=" + id.getSource() );
10791                 }
10792                 return false;
10793             }
10794             //
10795             id = SequenceAccessionTools.parseAccessorFromString( "segmented worms|gb_ADF31344" );
10796             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10797                     || !id.getValue().equals( "ADF31344" ) || !id.getSource().equals( "ncbi" ) ) {
10798                 if ( id != null ) {
10799                     System.out.println( "value   =" + id.getValue() );
10800                     System.out.println( "provider=" + id.getSource() );
10801                 }
10802                 return false;
10803             }
10804             //
10805             id = SequenceAccessionTools.parseAccessorFromString( "segmented worms gb_ADF31344 and more" );
10806             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10807                     || !id.getValue().equals( "ADF31344" ) || !id.getSource().equals( "ncbi" ) ) {
10808                 if ( id != null ) {
10809                     System.out.println( "value   =" + id.getValue() );
10810                     System.out.println( "provider=" + id.getSource() );
10811                 }
10812                 return false;
10813             }
10814             // 
10815             id = SequenceAccessionTools.parseAccessorFromString( "gb_AAA96518_1" );
10816             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10817                     || !id.getValue().equals( "AAA96518" ) || !id.getSource().equals( "ncbi" ) ) {
10818                 if ( id != null ) {
10819                     System.out.println( "value   =" + id.getValue() );
10820                     System.out.println( "provider=" + id.getSource() );
10821                 }
10822                 return false;
10823             }
10824             // 
10825             id = SequenceAccessionTools.parseAccessorFromString( "gb_EHB07727_1_rodents_" );
10826             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10827                     || !id.getValue().equals( "EHB07727" ) || !id.getSource().equals( "ncbi" ) ) {
10828                 if ( id != null ) {
10829                     System.out.println( "value   =" + id.getValue() );
10830                     System.out.println( "provider=" + id.getSource() );
10831                 }
10832                 return false;
10833             }
10834             // 
10835             id = SequenceAccessionTools.parseAccessorFromString( "dbj_BAF37827_1_turtles_" );
10836             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10837                     || !id.getValue().equals( "BAF37827" ) || !id.getSource().equals( "ncbi" ) ) {
10838                 if ( id != null ) {
10839                     System.out.println( "value   =" + id.getValue() );
10840                     System.out.println( "provider=" + id.getSource() );
10841                 }
10842                 return false;
10843             }
10844             // 
10845             id = SequenceAccessionTools.parseAccessorFromString( "emb_CAA73223_1_primates_" );
10846             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10847                     || !id.getValue().equals( "CAA73223" ) || !id.getSource().equals( "ncbi" ) ) {
10848                 if ( id != null ) {
10849                     System.out.println( "value   =" + id.getValue() );
10850                     System.out.println( "provider=" + id.getSource() );
10851                 }
10852                 return false;
10853             }
10854             // 
10855             id = SequenceAccessionTools.parseAccessorFromString( "mites|ref_XP_002434188_1" );
10856             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10857                     || !id.getValue().equals( "XP_002434188" ) || !id.getSource().equals( "refseq" ) ) {
10858                 if ( id != null ) {
10859                     System.out.println( "value   =" + id.getValue() );
10860                     System.out.println( "provider=" + id.getSource() );
10861                 }
10862                 return false;
10863             }
10864             // 
10865             id = SequenceAccessionTools.parseAccessorFromString( "mites_ref_XP_002434188_1_bla_XP_12345" );
10866             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10867                     || !id.getValue().equals( "XP_002434188" ) || !id.getSource().equals( "refseq" ) ) {
10868                 if ( id != null ) {
10869                     System.out.println( "value   =" + id.getValue() );
10870                     System.out.println( "provider=" + id.getSource() );
10871                 }
10872                 return false;
10873             }
10874             // 
10875             id = SequenceAccessionTools.parseAccessorFromString( "P4A123" );
10876             if ( ( id == null ) || ForesterUtil.isEmpty( id.getValue() ) || ForesterUtil.isEmpty( id.getSource() )
10877                     || !id.getValue().equals( "P4A123" ) || !id.getSource().equals( "uniprot" ) ) {
10878                 if ( id != null ) {
10879                     System.out.println( "value   =" + id.getValue() );
10880                     System.out.println( "provider=" + id.getSource() );
10881                 }
10882                 return false;
10883             }
10884             id = SequenceAccessionTools.parseAccessorFromString( "XP_12345" );
10885             if ( id != null ) {
10886                 System.out.println( "value   =" + id.getValue() );
10887                 System.out.println( "provider=" + id.getSource() );
10888                 return false;
10889             }
10890         }
10891         catch ( final Exception e ) {
10892             e.printStackTrace( System.out );
10893             return false;
10894         }
10895         return true;
10896     }
10897
10898     private static boolean testSequenceWriter() {
10899         try {
10900             final String n = ForesterUtil.LINE_SEPARATOR;
10901             if ( !SequenceWriter.toFasta( "name", "awes", 5 ).toString().equals( ">name" + n + "awes" ) ) {
10902                 return false;
10903             }
10904             if ( !SequenceWriter.toFasta( "name", "awes", 4 ).toString().equals( ">name" + n + "awes" ) ) {
10905                 return false;
10906             }
10907             if ( !SequenceWriter.toFasta( "name", "awes", 3 ).toString().equals( ">name" + n + "awe" + n + "s" ) ) {
10908                 return false;
10909             }
10910             if ( !SequenceWriter.toFasta( "name", "awes", 2 ).toString().equals( ">name" + n + "aw" + n + "es" ) ) {
10911                 return false;
10912             }
10913             if ( !SequenceWriter.toFasta( "name", "awes", 1 ).toString()
10914                     .equals( ">name" + n + "a" + n + "w" + n + "e" + n + "s" ) ) {
10915                 return false;
10916             }
10917             if ( !SequenceWriter.toFasta( "name", "abcdefghij", 3 ).toString()
10918                     .equals( ">name" + n + "abc" + n + "def" + n + "ghi" + n + "j" ) ) {
10919                 return false;
10920             }
10921         }
10922         catch ( final Exception e ) {
10923             e.printStackTrace();
10924             return false;
10925         }
10926         return true;
10927     }
10928
10929     private static boolean testSpecies() {
10930         try {
10931             final Species s1 = new BasicSpecies( "a" );
10932             final Species s2 = new BasicSpecies( "a" );
10933             final Species s3 = new BasicSpecies( "A" );
10934             final Species s4 = new BasicSpecies( "b" );
10935             if ( !s1.equals( s1 ) ) {
10936                 return false;
10937             }
10938             if ( s1.getSpeciesId().equals( "x" ) ) {
10939                 return false;
10940             }
10941             if ( s1.getSpeciesId().equals( null ) ) {
10942                 return false;
10943             }
10944             if ( !s1.equals( s2 ) ) {
10945                 return false;
10946             }
10947             if ( s1.equals( s3 ) ) {
10948                 return false;
10949             }
10950             if ( s1.hashCode() != s1.hashCode() ) {
10951                 return false;
10952             }
10953             if ( s1.hashCode() != s2.hashCode() ) {
10954                 return false;
10955             }
10956             if ( s1.hashCode() == s3.hashCode() ) {
10957                 return false;
10958             }
10959             if ( s1.compareTo( s1 ) != 0 ) {
10960                 return false;
10961             }
10962             if ( s1.compareTo( s2 ) != 0 ) {
10963                 return false;
10964             }
10965             if ( s1.compareTo( s3 ) != 0 ) {
10966                 return false;
10967             }
10968             if ( s1.compareTo( s4 ) >= 0 ) {
10969                 return false;
10970             }
10971             if ( s4.compareTo( s1 ) <= 0 ) {
10972                 return false;
10973             }
10974             if ( !s4.getSpeciesId().equals( "b" ) ) {
10975                 return false;
10976             }
10977             final Species s5 = new BasicSpecies( " C " );
10978             if ( !s5.getSpeciesId().equals( "C" ) ) {
10979                 return false;
10980             }
10981             if ( s5.equals( s1 ) ) {
10982                 return false;
10983             }
10984         }
10985         catch ( final Exception e ) {
10986             e.printStackTrace( System.out );
10987             return false;
10988         }
10989         return true;
10990     }
10991
10992     private static boolean testSplit() {
10993         try {
10994             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
10995             final Phylogeny p0 = factory.create( "(((A,B,C),D),(E,(F,G)))R", new NHXParser() )[ 0 ];
10996             //Archaeopteryx.createApplication( p0 );
10997             final Set<PhylogenyNode> ex = new HashSet<PhylogenyNode>();
10998             ex.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
10999             ex.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11000             ex.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11001             ex.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11002             ex.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11003             ex.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11004             ex.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11005             ex.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11006             ex.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11007             final TreeSplitMatrix s0 = new TreeSplitMatrix( p0, false, ex );
11008             // System.out.println( s0.toString() );
11009             //
11010             Set<PhylogenyNode> query_nodes = new HashSet<PhylogenyNode>();
11011             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11012             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11013             if ( s0.match( query_nodes ) ) {
11014                 return false;
11015             }
11016             query_nodes = new HashSet<PhylogenyNode>();
11017             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11018             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11019             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11020             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11021             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11022             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11023             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11024             if ( !s0.match( query_nodes ) ) {
11025                 return false;
11026             }
11027             //
11028             query_nodes = new HashSet<PhylogenyNode>();
11029             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11030             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11031             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11032             if ( !s0.match( query_nodes ) ) {
11033                 return false;
11034             }
11035             //
11036             query_nodes = new HashSet<PhylogenyNode>();
11037             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11038             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11039             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11040             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11041             if ( !s0.match( query_nodes ) ) {
11042                 return false;
11043             }
11044             //
11045             query_nodes = new HashSet<PhylogenyNode>();
11046             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11047             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11048             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11049             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11050             if ( !s0.match( query_nodes ) ) {
11051                 return false;
11052             }
11053             //
11054             query_nodes = new HashSet<PhylogenyNode>();
11055             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11056             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11057             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11058             if ( !s0.match( query_nodes ) ) {
11059                 return false;
11060             }
11061             //
11062             query_nodes = new HashSet<PhylogenyNode>();
11063             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11064             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11065             if ( !s0.match( query_nodes ) ) {
11066                 return false;
11067             }
11068             //
11069             query_nodes = new HashSet<PhylogenyNode>();
11070             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11071             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11072             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11073             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11074             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11075             if ( !s0.match( query_nodes ) ) {
11076                 return false;
11077             }
11078             //
11079             query_nodes = new HashSet<PhylogenyNode>();
11080             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11081             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11082             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11083             if ( !s0.match( query_nodes ) ) {
11084                 return false;
11085             }
11086             //
11087             query_nodes = new HashSet<PhylogenyNode>();
11088             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11089             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11090             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11091             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11092             if ( !s0.match( query_nodes ) ) {
11093                 return false;
11094             }
11095             //
11096             query_nodes = new HashSet<PhylogenyNode>();
11097             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11098             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11099             if ( s0.match( query_nodes ) ) {
11100                 return false;
11101             }
11102             //
11103             query_nodes = new HashSet<PhylogenyNode>();
11104             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11105             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11106             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11107             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11108             if ( s0.match( query_nodes ) ) {
11109                 return false;
11110             }
11111             //
11112             query_nodes = new HashSet<PhylogenyNode>();
11113             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11114             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11115             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11116             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11117             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11118             if ( s0.match( query_nodes ) ) {
11119                 return false;
11120             }
11121             //
11122             query_nodes = new HashSet<PhylogenyNode>();
11123             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11124             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11125             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11126             if ( s0.match( query_nodes ) ) {
11127                 return false;
11128             }
11129             //
11130             query_nodes = new HashSet<PhylogenyNode>();
11131             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11132             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11133             if ( s0.match( query_nodes ) ) {
11134                 return false;
11135             }
11136             //
11137             query_nodes = new HashSet<PhylogenyNode>();
11138             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11139             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11140             if ( s0.match( query_nodes ) ) {
11141                 return false;
11142             }
11143             //
11144             query_nodes = new HashSet<PhylogenyNode>();
11145             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11146             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11147             if ( s0.match( query_nodes ) ) {
11148                 return false;
11149             }
11150             //
11151             query_nodes = new HashSet<PhylogenyNode>();
11152             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11153             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11154             if ( s0.match( query_nodes ) ) {
11155                 return false;
11156             }
11157             //
11158             query_nodes = new HashSet<PhylogenyNode>();
11159             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11160             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11161             if ( s0.match( query_nodes ) ) {
11162                 return false;
11163             }
11164             //
11165             query_nodes = new HashSet<PhylogenyNode>();
11166             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11167             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11168             if ( s0.match( query_nodes ) ) {
11169                 return false;
11170             }
11171             //
11172             query_nodes = new HashSet<PhylogenyNode>();
11173             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11174             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11175             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11176             if ( s0.match( query_nodes ) ) {
11177                 return false;
11178             }
11179             //
11180             query_nodes = new HashSet<PhylogenyNode>();
11181             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11182             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11183             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11184             if ( s0.match( query_nodes ) ) {
11185                 return false;
11186             }
11187             //
11188             query_nodes = new HashSet<PhylogenyNode>();
11189             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11190             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11191             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11192             if ( s0.match( query_nodes ) ) {
11193                 return false;
11194             }
11195             //
11196             query_nodes = new HashSet<PhylogenyNode>();
11197             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11198             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11199             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11200             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11201             if ( s0.match( query_nodes ) ) {
11202                 return false;
11203             }
11204             /////////
11205             //            query_nodes = new HashSet<PhylogenyNode>();
11206             //            query_nodes.add( new PhylogenyNode( "X" ) );
11207             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11208             //            query_nodes.add( new PhylogenyNode( "A" ) );
11209             //            query_nodes.add( new PhylogenyNode( "B" ) );
11210             //            query_nodes.add( new PhylogenyNode( "C" ) );
11211             //            query_nodes.add( new PhylogenyNode( "D" ) );
11212             //            query_nodes.add( new PhylogenyNode( "E" ) );
11213             //            query_nodes.add( new PhylogenyNode( "F" ) );
11214             //            query_nodes.add( new PhylogenyNode( "G" ) );
11215             //            if ( !s0.match( query_nodes ) ) {
11216             //                return false;
11217             //            }
11218             //            query_nodes = new HashSet<PhylogenyNode>();
11219             //            query_nodes.add( new PhylogenyNode( "X" ) );
11220             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11221             //            query_nodes.add( new PhylogenyNode( "A" ) );
11222             //            query_nodes.add( new PhylogenyNode( "B" ) );
11223             //            query_nodes.add( new PhylogenyNode( "C" ) );
11224             //            if ( !s0.match( query_nodes ) ) {
11225             //                return false;
11226             //            }
11227             //            //
11228             //            query_nodes = new HashSet<PhylogenyNode>();
11229             //            query_nodes.add( new PhylogenyNode( "X" ) );
11230             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11231             //            query_nodes.add( new PhylogenyNode( "D" ) );
11232             //            query_nodes.add( new PhylogenyNode( "E" ) );
11233             //            query_nodes.add( new PhylogenyNode( "F" ) );
11234             //            query_nodes.add( new PhylogenyNode( "G" ) );
11235             //            if ( !s0.match( query_nodes ) ) {
11236             //                return false;
11237             //            }
11238             //            //
11239             //            query_nodes = new HashSet<PhylogenyNode>();
11240             //            query_nodes.add( new PhylogenyNode( "X" ) );
11241             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11242             //            query_nodes.add( new PhylogenyNode( "A" ) );
11243             //            query_nodes.add( new PhylogenyNode( "B" ) );
11244             //            query_nodes.add( new PhylogenyNode( "C" ) );
11245             //            query_nodes.add( new PhylogenyNode( "D" ) );
11246             //            if ( !s0.match( query_nodes ) ) {
11247             //                return false;
11248             //            }
11249             //            //
11250             //            query_nodes = new HashSet<PhylogenyNode>();
11251             //            query_nodes.add( new PhylogenyNode( "X" ) );
11252             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11253             //            query_nodes.add( new PhylogenyNode( "E" ) );
11254             //            query_nodes.add( new PhylogenyNode( "F" ) );
11255             //            query_nodes.add( new PhylogenyNode( "G" ) );
11256             //            if ( !s0.match( query_nodes ) ) {
11257             //                return false;
11258             //            }
11259             //            //
11260             //            query_nodes = new HashSet<PhylogenyNode>();
11261             //            query_nodes.add( new PhylogenyNode( "X" ) );
11262             //            query_nodes.add( new PhylogenyNode( "Y" ) );
11263             //            query_nodes.add( new PhylogenyNode( "F" ) );
11264             //            query_nodes.add( new PhylogenyNode( "G" ) );
11265             //            if ( !s0.match( query_nodes ) ) {
11266             //                return false;
11267             //            }
11268             //
11269             query_nodes = new HashSet<PhylogenyNode>();
11270             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11271             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11272             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11273             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11274             if ( s0.match( query_nodes ) ) {
11275                 return false;
11276             }
11277             //
11278             query_nodes = new HashSet<PhylogenyNode>();
11279             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11280             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11281             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11282             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11283             if ( s0.match( query_nodes ) ) {
11284                 return false;
11285             }
11286             ///////////////////////////
11287             //
11288             query_nodes = new HashSet<PhylogenyNode>();
11289             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11290             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11291             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11292             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11293             if ( s0.match( query_nodes ) ) {
11294                 return false;
11295             }
11296             //
11297             query_nodes = new HashSet<PhylogenyNode>();
11298             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11299             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11300             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11301             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11302             if ( s0.match( query_nodes ) ) {
11303                 return false;
11304             }
11305             //
11306             query_nodes = new HashSet<PhylogenyNode>();
11307             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11308             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11309             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11310             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11311             if ( s0.match( query_nodes ) ) {
11312                 return false;
11313             }
11314             //
11315             query_nodes = new HashSet<PhylogenyNode>();
11316             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11317             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11318             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11319             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11320             if ( s0.match( query_nodes ) ) {
11321                 return false;
11322             }
11323             //
11324             query_nodes = new HashSet<PhylogenyNode>();
11325             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11326             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11327             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11328             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11329             if ( s0.match( query_nodes ) ) {
11330                 return false;
11331             }
11332             //
11333             query_nodes = new HashSet<PhylogenyNode>();
11334             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11335             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11336             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11337             if ( s0.match( query_nodes ) ) {
11338                 return false;
11339             }
11340             //
11341             query_nodes = new HashSet<PhylogenyNode>();
11342             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11343             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11344             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11345             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11346             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11347             if ( s0.match( query_nodes ) ) {
11348                 return false;
11349             }
11350             //
11351             query_nodes = new HashSet<PhylogenyNode>();
11352             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11353             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11354             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11355             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11356             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11357             if ( s0.match( query_nodes ) ) {
11358                 return false;
11359             }
11360             //
11361             query_nodes = new HashSet<PhylogenyNode>();
11362             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11363             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11364             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11365             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11366             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11367             if ( s0.match( query_nodes ) ) {
11368                 return false;
11369             }
11370             //
11371             query_nodes = new HashSet<PhylogenyNode>();
11372             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "X" ) );
11373             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "Y" ) );
11374             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11375             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11376             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11377             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11378             if ( s0.match( query_nodes ) ) {
11379                 return false;
11380             }
11381         }
11382         catch ( final Exception e ) {
11383             e.printStackTrace();
11384             return false;
11385         }
11386         return true;
11387     }
11388
11389     private static boolean testSplitStrict() {
11390         try {
11391             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
11392             final Phylogeny p0 = factory.create( "(((A,B,C),D),(E,(F,G)))R", new NHXParser() )[ 0 ];
11393             final Set<PhylogenyNode> ex = new HashSet<PhylogenyNode>();
11394             ex.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11395             ex.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11396             ex.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11397             ex.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11398             ex.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11399             ex.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11400             ex.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11401             final TreeSplitMatrix s0 = new TreeSplitMatrix( p0, true, ex );
11402             Set<PhylogenyNode> query_nodes = new HashSet<PhylogenyNode>();
11403             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11404             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11405             if ( s0.match( query_nodes ) ) {
11406                 return false;
11407             }
11408             query_nodes = new HashSet<PhylogenyNode>();
11409             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11410             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11411             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11412             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11413             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11414             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11415             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11416             if ( !s0.match( query_nodes ) ) {
11417                 return false;
11418             }
11419             //
11420             query_nodes = new HashSet<PhylogenyNode>();
11421             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11422             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11423             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11424             if ( !s0.match( query_nodes ) ) {
11425                 return false;
11426             }
11427             //
11428             query_nodes = new HashSet<PhylogenyNode>();
11429             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11430             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11431             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11432             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11433             if ( !s0.match( query_nodes ) ) {
11434                 return false;
11435             }
11436             //
11437             query_nodes = new HashSet<PhylogenyNode>();
11438             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11439             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11440             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11441             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11442             if ( !s0.match( query_nodes ) ) {
11443                 return false;
11444             }
11445             //
11446             query_nodes = new HashSet<PhylogenyNode>();
11447             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11448             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11449             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11450             if ( !s0.match( query_nodes ) ) {
11451                 return false;
11452             }
11453             //
11454             query_nodes = new HashSet<PhylogenyNode>();
11455             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11456             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11457             if ( !s0.match( query_nodes ) ) {
11458                 return false;
11459             }
11460             //
11461             query_nodes = new HashSet<PhylogenyNode>();
11462             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11463             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11464             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11465             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11466             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11467             if ( !s0.match( query_nodes ) ) {
11468                 return false;
11469             }
11470             //
11471             query_nodes = new HashSet<PhylogenyNode>();
11472             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11473             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11474             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11475             if ( !s0.match( query_nodes ) ) {
11476                 return false;
11477             }
11478             //
11479             query_nodes = new HashSet<PhylogenyNode>();
11480             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11481             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11482             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11483             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11484             if ( !s0.match( query_nodes ) ) {
11485                 return false;
11486             }
11487             //
11488             query_nodes = new HashSet<PhylogenyNode>();
11489             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11490             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11491             if ( s0.match( query_nodes ) ) {
11492                 return false;
11493             }
11494             //
11495             query_nodes = new HashSet<PhylogenyNode>();
11496             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11497             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11498             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11499             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11500             if ( s0.match( query_nodes ) ) {
11501                 return false;
11502             }
11503             //
11504             query_nodes = new HashSet<PhylogenyNode>();
11505             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11506             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11507             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11508             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11509             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11510             if ( s0.match( query_nodes ) ) {
11511                 return false;
11512             }
11513             //
11514             query_nodes = new HashSet<PhylogenyNode>();
11515             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11516             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11517             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11518             if ( s0.match( query_nodes ) ) {
11519                 return false;
11520             }
11521             //
11522             query_nodes = new HashSet<PhylogenyNode>();
11523             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11524             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11525             if ( s0.match( query_nodes ) ) {
11526                 return false;
11527             }
11528             //
11529             query_nodes = new HashSet<PhylogenyNode>();
11530             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11531             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11532             if ( s0.match( query_nodes ) ) {
11533                 return false;
11534             }
11535             //
11536             query_nodes = new HashSet<PhylogenyNode>();
11537             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11538             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "C" ) );
11539             if ( s0.match( query_nodes ) ) {
11540                 return false;
11541             }
11542             //
11543             query_nodes = new HashSet<PhylogenyNode>();
11544             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11545             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11546             if ( s0.match( query_nodes ) ) {
11547                 return false;
11548             }
11549             //
11550             query_nodes = new HashSet<PhylogenyNode>();
11551             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11552             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11553             if ( s0.match( query_nodes ) ) {
11554                 return false;
11555             }
11556             //
11557             query_nodes = new HashSet<PhylogenyNode>();
11558             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11559             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11560             if ( s0.match( query_nodes ) ) {
11561                 return false;
11562             }
11563             //
11564             query_nodes = new HashSet<PhylogenyNode>();
11565             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11566             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "F" ) );
11567             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11568             if ( s0.match( query_nodes ) ) {
11569                 return false;
11570             }
11571             //
11572             query_nodes = new HashSet<PhylogenyNode>();
11573             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11574             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "B" ) );
11575             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11576             if ( s0.match( query_nodes ) ) {
11577                 return false;
11578             }
11579             //
11580             query_nodes = new HashSet<PhylogenyNode>();
11581             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11582             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11583             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11584             if ( s0.match( query_nodes ) ) {
11585                 return false;
11586             }
11587             //
11588             query_nodes = new HashSet<PhylogenyNode>();
11589             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "E" ) );
11590             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "D" ) );
11591             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "A" ) );
11592             query_nodes.add( PhylogenyNode.createInstanceFromNhxString( "G" ) );
11593             if ( s0.match( query_nodes ) ) {
11594                 return false;
11595             }
11596         }
11597         catch ( final Exception e ) {
11598             e.printStackTrace();
11599             return false;
11600         }
11601         return true;
11602     }
11603
11604     private static boolean testSubtreeDeletion() {
11605         try {
11606             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
11607             final Phylogeny t1 = factory.create( "((A,B,C)abc,(D,E,F)def)r", new NHXParser() )[ 0 ];
11608             t1.deleteSubtree( t1.getNode( "A" ), false );
11609             if ( t1.getNumberOfExternalNodes() != 5 ) {
11610                 return false;
11611             }
11612             t1.toNewHampshireX();
11613             t1.deleteSubtree( t1.getNode( "E" ), false );
11614             if ( t1.getNumberOfExternalNodes() != 4 ) {
11615                 return false;
11616             }
11617             t1.toNewHampshireX();
11618             t1.deleteSubtree( t1.getNode( "F" ), false );
11619             if ( t1.getNumberOfExternalNodes() != 3 ) {
11620                 return false;
11621             }
11622             t1.toNewHampshireX();
11623             t1.deleteSubtree( t1.getNode( "D" ), false );
11624             t1.toNewHampshireX();
11625             if ( t1.getNumberOfExternalNodes() != 3 ) {
11626                 return false;
11627             }
11628             t1.deleteSubtree( t1.getNode( "def" ), false );
11629             t1.toNewHampshireX();
11630             if ( t1.getNumberOfExternalNodes() != 2 ) {
11631                 return false;
11632             }
11633             t1.deleteSubtree( t1.getNode( "B" ), false );
11634             t1.toNewHampshireX();
11635             if ( t1.getNumberOfExternalNodes() != 1 ) {
11636                 return false;
11637             }
11638             t1.deleteSubtree( t1.getNode( "C" ), false );
11639             t1.toNewHampshireX();
11640             if ( t1.getNumberOfExternalNodes() != 1 ) {
11641                 return false;
11642             }
11643             t1.deleteSubtree( t1.getNode( "abc" ), false );
11644             t1.toNewHampshireX();
11645             if ( t1.getNumberOfExternalNodes() != 1 ) {
11646                 return false;
11647             }
11648             t1.deleteSubtree( t1.getNode( "r" ), false );
11649             if ( t1.getNumberOfExternalNodes() != 0 ) {
11650                 return false;
11651             }
11652             if ( !t1.isEmpty() ) {
11653                 return false;
11654             }
11655             final Phylogeny t2 = factory.create( "(((1,2,3)A,B,C)abc,(D,E,F)def)r", new NHXParser() )[ 0 ];
11656             t2.deleteSubtree( t2.getNode( "A" ), false );
11657             t2.toNewHampshireX();
11658             if ( t2.getNumberOfExternalNodes() != 5 ) {
11659                 return false;
11660             }
11661             t2.deleteSubtree( t2.getNode( "abc" ), false );
11662             t2.toNewHampshireX();
11663             if ( t2.getNumberOfExternalNodes() != 3 ) {
11664                 return false;
11665             }
11666             t2.deleteSubtree( t2.getNode( "def" ), false );
11667             t2.toNewHampshireX();
11668             if ( t2.getNumberOfExternalNodes() != 1 ) {
11669                 return false;
11670             }
11671         }
11672         catch ( final Exception e ) {
11673             e.printStackTrace( System.out );
11674             return false;
11675         }
11676         return true;
11677     }
11678
11679     private static boolean testSupportCount() {
11680         try {
11681             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
11682             final Phylogeny t0_1 = factory.create( "(((A,B),C),(D,E))", new NHXParser() )[ 0 ];
11683             final Phylogeny[] phylogenies_1 = factory.create( "(((A,B),C),(D,E)) " + "(((C,B),A),(D,E))"
11684                                                                       + "(((A,B),C),(D,E)) " + "(((A,B),C),(D,E))"
11685                                                                       + "(((A,B),C),(D,E))" + "(((C,B),A),(D,E))"
11686                                                                       + "(((E,B),D),(C,A))" + "(((C,B),A),(D,E))"
11687                                                                       + "(((A,B),C),(D,E))" + "(((A,B),C),(D,E))",
11688                                                               new NHXParser() );
11689             SupportCount.count( t0_1, phylogenies_1, true, false );
11690             final Phylogeny t0_2 = factory.create( "(((((A,B),C),D),E),(F,G))", new NHXParser() )[ 0 ];
11691             final Phylogeny[] phylogenies_2 = factory.create( "(((((A,B),C),D),E),(F,G))"
11692                                                                       + "(((((A,B),C),D),E),((F,G),X))"
11693                                                                       + "(((((A,Y),B),C),D),((F,G),E))"
11694                                                                       + "(((((A,B),C),D),E),(F,G))"
11695                                                                       + "(((((A,B),C),D),E),(F,G))"
11696                                                                       + "(((((A,B),C),D),E),(F,G))"
11697                                                                       + "(((((A,B),C),D),E),(F,G),Z)"
11698                                                                       + "(((((A,B),C),D),E),(F,G))"
11699                                                                       + "((((((A,B),C),D),E),F),G)"
11700                                                                       + "(((((X,Y),F,G),E),((A,B),C)),D)",
11701                                                               new NHXParser() );
11702             SupportCount.count( t0_2, phylogenies_2, true, false );
11703             final PhylogenyNodeIterator it = t0_2.iteratorPostorder();
11704             while ( it.hasNext() ) {
11705                 final PhylogenyNode n = it.next();
11706                 if ( !n.isExternal() && ( PhylogenyMethods.getConfidenceValue( n ) != 10 ) ) {
11707                     return false;
11708                 }
11709             }
11710             final Phylogeny t0_3 = factory.create( "(((A,B)ab,C)abc,((D,E)de,F)def)", new NHXParser() )[ 0 ];
11711             final Phylogeny[] phylogenies_3 = factory.create( "(((A,B),C),((D,E),F))" + "(((A,C),B),((D,F),E))"
11712                     + "(((C,A),B),((F,D),E))" + "(((A,B),F),((D,E),C))" + "(((((A,B),C),D),E),F)", new NHXParser() );
11713             SupportCount.count( t0_3, phylogenies_3, true, false );
11714             t0_3.reRoot( t0_3.getNode( "def" ).getId() );
11715             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "ab" ) ) != 3 ) {
11716                 return false;
11717             }
11718             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "abc" ) ) != 4 ) {
11719                 return false;
11720             }
11721             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "def" ) ) != 4 ) {
11722                 return false;
11723             }
11724             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "de" ) ) != 2 ) {
11725                 return false;
11726             }
11727             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "A" ) ) != 5 ) {
11728                 return false;
11729             }
11730             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "B" ) ) != 5 ) {
11731                 return false;
11732             }
11733             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "C" ) ) != 5 ) {
11734                 return false;
11735             }
11736             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "D" ) ) != 5 ) {
11737                 return false;
11738             }
11739             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "E" ) ) != 5 ) {
11740                 return false;
11741             }
11742             if ( PhylogenyMethods.getConfidenceValue( t0_3.getNode( "F" ) ) != 5 ) {
11743                 return false;
11744             }
11745             final Phylogeny t0_4 = factory.create( "(((((A,B)1,C)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11746             final Phylogeny[] phylogenies_4 = factory.create( "((((((A,X),C),B),D),E),F) "
11747                     + "(((A,B,Z),C,Q),(((D,Y),E),F))", new NHXParser() );
11748             SupportCount.count( t0_4, phylogenies_4, true, false );
11749             t0_4.reRoot( t0_4.getNode( "F" ).getId() );
11750             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "1" ) ) != 1 ) {
11751                 return false;
11752             }
11753             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "2" ) ) != 2 ) {
11754                 return false;
11755             }
11756             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "3" ) ) != 1 ) {
11757                 return false;
11758             }
11759             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "4" ) ) != 2 ) {
11760                 return false;
11761             }
11762             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "A" ) ) != 2 ) {
11763                 return false;
11764             }
11765             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "B" ) ) != 2 ) {
11766                 return false;
11767             }
11768             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "C" ) ) != 2 ) {
11769                 return false;
11770             }
11771             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "D" ) ) != 2 ) {
11772                 return false;
11773             }
11774             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "E" ) ) != 2 ) {
11775                 return false;
11776             }
11777             if ( PhylogenyMethods.getConfidenceValue( t0_4.getNode( "F" ) ) != 2 ) {
11778                 return false;
11779             }
11780             Phylogeny a = factory.create( "(((((A,B)1,C)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11781             final Phylogeny b1 = factory.create( "(((((B,A)1,C)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11782             double d = SupportCount.compare( b1, a, true, true, true );
11783             if ( !Test.isEqual( d, 5.0 / 5.0 ) ) {
11784                 return false;
11785             }
11786             a = factory.create( "(((((A,B)1,C)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11787             final Phylogeny b2 = factory.create( "(((((C,B)1,A)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11788             d = SupportCount.compare( b2, a, true, true, true );
11789             if ( !Test.isEqual( d, 4.0 / 5.0 ) ) {
11790                 return false;
11791             }
11792             a = factory.create( "(((((A,B)1,C)2,D)3,E)4,F)", new NHXParser() )[ 0 ];
11793             final Phylogeny b3 = factory.create( "(((((F,C)1,A)2,B)3,D)4,E)", new NHXParser() )[ 0 ];
11794             d = SupportCount.compare( b3, a, true, true, true );
11795             if ( !Test.isEqual( d, 2.0 / 5.0 ) ) {
11796                 return false;
11797             }
11798             a = factory.create( "(((((A,B)1,C)2,D)3,E)4,F)r", new NHXParser() )[ 0 ];
11799             final Phylogeny b4 = factory.create( "(((((F,C)1,A)2,B)3,D)4,E)r", new NHXParser() )[ 0 ];
11800             d = SupportCount.compare( b4, a, true, true, false );
11801             if ( !Test.isEqual( d, 1.0 / 5.0 ) ) {
11802                 return false;
11803             }
11804         }
11805         catch ( final Exception e ) {
11806             e.printStackTrace( System.out );
11807             return false;
11808         }
11809         return true;
11810     }
11811
11812     private static boolean testSupportTransfer() {
11813         try {
11814             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
11815             final Phylogeny p1 = factory.create( "(((A,B)ab:97,C)abc:57,((D,E)de:10,(F,G)fg:50,(H,I)hi:64)defghi)",
11816                                                  new NHXParser() )[ 0 ];
11817             final Phylogeny p2 = factory
11818                     .create( "(((A:0.1,B:0.3)ab:0.4,C)abc:0.5,((D,E)de,(F,G)fg,(H,I)hi:0.59)defghi)", new NHXParser() )[ 0 ];
11819             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "ab" ) ) >= 0.0 ) {
11820                 return false;
11821             }
11822             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "abc" ) ) >= 0.0 ) {
11823                 return false;
11824             }
11825             support_transfer.moveBranchLengthsToBootstrap( p1 );
11826             support_transfer.transferSupportValues( p1, p2 );
11827             if ( p2.getNode( "ab" ).getDistanceToParent() != 0.4 ) {
11828                 return false;
11829             }
11830             if ( p2.getNode( "abc" ).getDistanceToParent() != 0.5 ) {
11831                 return false;
11832             }
11833             if ( p2.getNode( "hi" ).getDistanceToParent() != 0.59 ) {
11834                 return false;
11835             }
11836             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "ab" ) ) != 97 ) {
11837                 return false;
11838             }
11839             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "abc" ) ) != 57 ) {
11840                 return false;
11841             }
11842             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "de" ) ) != 10 ) {
11843                 return false;
11844             }
11845             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "fg" ) ) != 50 ) {
11846                 return false;
11847             }
11848             if ( PhylogenyMethods.getConfidenceValue( p2.getNode( "hi" ) ) != 64 ) {
11849                 return false;
11850             }
11851         }
11852         catch ( final Exception e ) {
11853             e.printStackTrace( System.out );
11854             return false;
11855         }
11856         return true;
11857     }
11858
11859     private static boolean testTaxonomyExtraction() {
11860         try {
11861             final PhylogenyNode n0 = PhylogenyNode
11862                     .createInstanceFromNhxString( "sd_12345678", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11863             if ( n0.getNodeData().isHasTaxonomy() ) {
11864                 return false;
11865             }
11866             final PhylogenyNode n1 = PhylogenyNode
11867                     .createInstanceFromNhxString( "sd_12345x", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11868             if ( n1.getNodeData().isHasTaxonomy() ) {
11869                 System.out.println( n1.toString() );
11870                 return false;
11871             }
11872             final PhylogenyNode n2x = PhylogenyNode
11873                     .createInstanceFromNhxString( "12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11874             if ( n2x.getNodeData().isHasTaxonomy() ) {
11875                 return false;
11876             }
11877             final PhylogenyNode n3 = PhylogenyNode
11878                     .createInstanceFromNhxString( "BLAG_12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11879             if ( !n3.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "12345" ) ) {
11880                 System.out.println( n3.toString() );
11881                 return false;
11882             }
11883             final PhylogenyNode n4 = PhylogenyNode
11884                     .createInstanceFromNhxString( "blag-12345", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11885             if ( n4.getNodeData().isHasTaxonomy() ) {
11886                 System.out.println( n4.toString() );
11887                 return false;
11888             }
11889             final PhylogenyNode n5 = PhylogenyNode
11890                     .createInstanceFromNhxString( "12345-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11891             if ( n5.getNodeData().isHasTaxonomy() ) {
11892                 System.out.println( n5.toString() );
11893                 return false;
11894             }
11895             final PhylogenyNode n6 = PhylogenyNode
11896                     .createInstanceFromNhxString( "BLAG-12345-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11897             if ( n6.getNodeData().isHasTaxonomy() ) {
11898                 System.out.println( n6.toString() );
11899                 return false;
11900             }
11901             final PhylogenyNode n7 = PhylogenyNode
11902                     .createInstanceFromNhxString( "BLAG-12345_blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11903             if ( n7.getNodeData().isHasTaxonomy() ) {
11904                 System.out.println( n7.toString() );
11905                 return false;
11906             }
11907             final PhylogenyNode n8 = PhylogenyNode
11908                     .createInstanceFromNhxString( "BLAG_12345-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11909             if ( !n8.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "12345" ) ) {
11910                 System.out.println( n8.toString() );
11911                 return false;
11912             }
11913             final PhylogenyNode n9 = PhylogenyNode
11914                     .createInstanceFromNhxString( "BLAG_12345/blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11915             if ( !n9.getNodeData().getTaxonomy().getIdentifier().getValue().equals( "12345" ) ) {
11916                 System.out.println( n9.toString() );
11917                 return false;
11918             }
11919             final PhylogenyNode n10x = PhylogenyNode
11920                     .createInstanceFromNhxString( "BLAG_12X45-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11921             if ( n10x.getNodeData().isHasTaxonomy() ) {
11922                 System.out.println( n10x.toString() );
11923                 return false;
11924             }
11925             final PhylogenyNode n10xx = PhylogenyNode
11926                     .createInstanceFromNhxString( "BLAG_1YX45-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11927             if ( n10xx.getNodeData().isHasTaxonomy() ) {
11928                 System.out.println( n10xx.toString() );
11929                 return false;
11930             }
11931             final PhylogenyNode n10 = PhylogenyNode
11932                     .createInstanceFromNhxString( "BLAG_9YX45-blag", NHXParser.TAXONOMY_EXTRACTION.PFAM_STYLE_RELAXED );
11933             if ( !n10.getNodeData().getTaxonomy().getTaxonomyCode().equals( "9YX45" ) ) {
11934                 System.out.println( n10.toString() );
11935                 return false;
11936             }
11937             final PhylogenyNode n11 = PhylogenyNode
11938                     .createInstanceFromNhxString( "BLAG_Mus_musculus", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11939             if ( !n11.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus" ) ) {
11940                 System.out.println( n11.toString() );
11941                 return false;
11942             }
11943             final PhylogenyNode n12 = PhylogenyNode
11944                     .createInstanceFromNhxString( "BLAG_Mus_musculus_musculus",
11945                                                   NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11946             if ( !n12.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus musculus" ) ) {
11947                 System.out.println( n12.toString() );
11948                 return false;
11949             }
11950             final PhylogenyNode n13 = PhylogenyNode
11951                     .createInstanceFromNhxString( "BLAG_Mus_musculus1", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11952             if ( n13.getNodeData().isHasTaxonomy() ) {
11953                 System.out.println( n13.toString() );
11954                 return false;
11955             }
11956             final PhylogenyNode n14 = PhylogenyNode
11957                     .createInstanceFromNhxString( "Mus_musculus_392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11958             if ( !n14.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus" ) ) {
11959                 System.out.println( n14.toString() );
11960                 return false;
11961             }
11962             final PhylogenyNode n15 = PhylogenyNode
11963                     .createInstanceFromNhxString( "Mus_musculus_K392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11964             if ( !n15.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus" ) ) {
11965                 System.out.println( n15.toString() );
11966                 return false;
11967             }
11968             final PhylogenyNode n16 = PhylogenyNode
11969                     .createInstanceFromNhxString( "Mus musculus 392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11970             if ( !n16.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus" ) ) {
11971                 System.out.println( n16.toString() );
11972                 return false;
11973             }
11974             final PhylogenyNode n17 = PhylogenyNode
11975                     .createInstanceFromNhxString( "Mus musculus K392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11976             if ( !n17.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus" ) ) {
11977                 System.out.println( n17.toString() );
11978                 return false;
11979             }
11980             //
11981             final PhylogenyNode n18 = PhylogenyNode
11982                     .createInstanceFromNhxString( "Mus_musculus_musculus_392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11983             if ( !n18.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus musculus" ) ) {
11984                 System.out.println( n18.toString() );
11985                 return false;
11986             }
11987             final PhylogenyNode n19 = PhylogenyNode
11988                     .createInstanceFromNhxString( "Mus_musculus_musculus_K392",
11989                                                   NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11990             if ( !n19.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus musculus" ) ) {
11991                 System.out.println( n19.toString() );
11992                 return false;
11993             }
11994             final PhylogenyNode n20 = PhylogenyNode
11995                     .createInstanceFromNhxString( "Mus musculus musculus 392", NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
11996             if ( !n20.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus musculus" ) ) {
11997                 System.out.println( n20.toString() );
11998                 return false;
11999             }
12000             final PhylogenyNode n21 = PhylogenyNode
12001                     .createInstanceFromNhxString( "Mus musculus musculus K392",
12002                                                   NHXParser.TAXONOMY_EXTRACTION.AGGRESSIVE );
12003             if ( !n21.getNodeData().getTaxonomy().getScientificName().equals( "Mus musculus musculus" ) ) {
12004                 System.out.println( n21.toString() );
12005                 return false;
12006             }
12007         }
12008         catch ( final Exception e ) {
12009             e.printStackTrace( System.out );
12010             return false;
12011         }
12012         return true;
12013     }
12014
12015     private static boolean testTreeCopy() {
12016         try {
12017             final String str_0 = "((((a,b),c),d)[&&NHX:S=lizards],e[&&NHX:S=reptiles])r[&&NHX:S=animals]";
12018             final Phylogeny t0 = Phylogeny.createInstanceFromNhxString( str_0 );
12019             final Phylogeny t1 = t0.copy();
12020             if ( !t1.toNewHampshireX().equals( t0.toNewHampshireX() ) ) {
12021                 return false;
12022             }
12023             if ( !t1.toNewHampshireX().equals( str_0 ) ) {
12024                 return false;
12025             }
12026             t0.deleteSubtree( t0.getNode( "c" ), true );
12027             t0.deleteSubtree( t0.getNode( "a" ), true );
12028             t0.getRoot().getNodeData().getTaxonomy().setScientificName( "metazoa" );
12029             t0.getNode( "b" ).setName( "Bee" );
12030             if ( !t0.toNewHampshireX().equals( "((Bee,d)[&&NHX:S=lizards],e[&&NHX:S=reptiles])r[&&NHX:S=metazoa]" ) ) {
12031                 return false;
12032             }
12033             if ( !t1.toNewHampshireX().equals( str_0 ) ) {
12034                 return false;
12035             }
12036             t0.deleteSubtree( t0.getNode( "e" ), true );
12037             t0.deleteSubtree( t0.getNode( "Bee" ), true );
12038             t0.deleteSubtree( t0.getNode( "d" ), true );
12039             if ( !t1.toNewHampshireX().equals( str_0 ) ) {
12040                 return false;
12041             }
12042         }
12043         catch ( final Exception e ) {
12044             e.printStackTrace();
12045             return false;
12046         }
12047         return true;
12048     }
12049
12050     private static boolean testTreeMethods() {
12051         try {
12052             final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance();
12053             final Phylogeny t0 = factory.create( "((((A,B)ab,C)abc,D)abcd,E)", new NHXParser() )[ 0 ];
12054             PhylogenyMethods.collapseSubtreeStructure( t0.getNode( "abcd" ) );
12055             if ( !t0.toNewHampshireX().equals( "((A,B,C,D)abcd,E)" ) ) {
12056                 System.out.println( t0.toNewHampshireX() );
12057                 return false;
12058             }
12059             final Phylogeny t1 = factory.create( "((((A:0.1,B)ab:0.2,C)abc:0.3,D)abcd:0.4,E)", new NHXParser() )[ 0 ];
12060             PhylogenyMethods.collapseSubtreeStructure( t1.getNode( "abcd" ) );
12061             if ( !isEqual( t1.getNode( "A" ).getDistanceToParent(), 0.6 ) ) {
12062                 return false;
12063             }
12064             if ( !isEqual( t1.getNode( "B" ).getDistanceToParent(), 0.5 ) ) {
12065                 return false;
12066             }
12067             if ( !isEqual( t1.getNode( "C" ).getDistanceToParent(), 0.3 ) ) {
12068                 return false;
12069             }
12070         }
12071         catch ( final Exception e ) {
12072             e.printStackTrace( System.out );
12073             return false;
12074         }
12075         return true;
12076     }
12077
12078     private static boolean testUniprotEntryRetrieval() {
12079         try {
12080             final SequenceDatabaseEntry entry = SequenceDbWsTools.obtainUniProtEntry( "P12345", 200 );
12081             if ( !entry.getAccession().equals( "P12345" ) ) {
12082                 return false;
12083             }
12084             if ( !entry.getTaxonomyScientificName().equals( "Oryctolagus cuniculus" ) ) {
12085                 return false;
12086             }
12087             if ( !entry.getSequenceName().equals( "Aspartate aminotransferase, mitochondrial" ) ) {
12088                 return false;
12089             }
12090             if ( !entry.getSequenceSymbol().equals( "mAspAT" ) ) {
12091                 return false;
12092             }
12093             if ( !entry.getGeneName().equals( "GOT2" ) ) {
12094                 return false;
12095             }
12096             if ( !entry.getTaxonomyIdentifier().equals( "9986" ) ) {
12097                 return false;
12098             }
12099         }
12100         catch ( final IOException e ) {
12101             System.out.println();
12102             System.out.println( "the following might be due to absence internet connection:" );
12103             e.printStackTrace( System.out );
12104             return true;
12105         }
12106         catch ( final Exception e ) {
12107             return false;
12108         }
12109         return true;
12110     }
12111
12112     private static boolean testUniprotTaxonomySearch() {
12113         try {
12114             List<UniProtTaxonomy> results = SequenceDbWsTools.getTaxonomiesFromCommonNameStrict( "starlet sea anemone",
12115                                                                                                  10 );
12116             if ( results.size() != 1 ) {
12117                 return false;
12118             }
12119             if ( !results.get( 0 ).getCode().equals( "NEMVE" ) ) {
12120                 return false;
12121             }
12122             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "starlet sea anemone" ) ) {
12123                 return false;
12124             }
12125             if ( !results.get( 0 ).getId().equalsIgnoreCase( "45351" ) ) {
12126                 return false;
12127             }
12128             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12129                 return false;
12130             }
12131             if ( !results.get( 0 ).getScientificName().equals( "Nematostella vectensis" ) ) {
12132                 return false;
12133             }
12134             results = null;
12135             results = SequenceDbWsTools.getTaxonomiesFromScientificNameStrict( "Nematostella vectensis", 10 );
12136             if ( results.size() != 1 ) {
12137                 return false;
12138             }
12139             if ( !results.get( 0 ).getCode().equals( "NEMVE" ) ) {
12140                 return false;
12141             }
12142             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "starlet sea anemone" ) ) {
12143                 return false;
12144             }
12145             if ( !results.get( 0 ).getId().equalsIgnoreCase( "45351" ) ) {
12146                 return false;
12147             }
12148             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12149                 return false;
12150             }
12151             if ( !results.get( 0 ).getScientificName().equals( "Nematostella vectensis" ) ) {
12152                 return false;
12153             }
12154             results = null;
12155             results = SequenceDbWsTools.getTaxonomiesFromId( "45351", 10 );
12156             if ( results.size() != 1 ) {
12157                 return false;
12158             }
12159             if ( !results.get( 0 ).getCode().equals( "NEMVE" ) ) {
12160                 return false;
12161             }
12162             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "starlet sea anemone" ) ) {
12163                 return false;
12164             }
12165             if ( !results.get( 0 ).getId().equalsIgnoreCase( "45351" ) ) {
12166                 return false;
12167             }
12168             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12169                 return false;
12170             }
12171             if ( !results.get( 0 ).getScientificName().equals( "Nematostella vectensis" ) ) {
12172                 return false;
12173             }
12174             results = null;
12175             results = SequenceDbWsTools.getTaxonomiesFromTaxonomyCode( "NEMVE", 10 );
12176             if ( results.size() != 1 ) {
12177                 return false;
12178             }
12179             if ( !results.get( 0 ).getCode().equals( "NEMVE" ) ) {
12180                 return false;
12181             }
12182             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "starlet sea anemone" ) ) {
12183                 return false;
12184             }
12185             if ( !results.get( 0 ).getId().equalsIgnoreCase( "45351" ) ) {
12186                 return false;
12187             }
12188             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12189                 return false;
12190             }
12191             if ( !results.get( 0 ).getScientificName().equals( "Nematostella vectensis" ) ) {
12192                 return false;
12193             }
12194             if ( !results.get( 0 ).getLineage().get( 1 ).equals( "Eukaryota" ) ) {
12195                 return false;
12196             }
12197             if ( !results.get( 0 ).getLineage().get( 2 ).equals( "Metazoa" ) ) {
12198                 return false;
12199             }
12200             if ( !results.get( 0 ).getLineage().get( results.get( 0 ).getLineage().size() - 1 )
12201                     .equals( "Nematostella vectensis" ) ) {
12202                 System.out.println( results.get( 0 ).getLineage() );
12203                 return false;
12204             }
12205             //
12206             results = null;
12207             results = SequenceDbWsTools.getTaxonomiesFromScientificNameStrict( "Xenopus tropicalis", 10 );
12208             if ( results.size() != 1 ) {
12209                 return false;
12210             }
12211             if ( !results.get( 0 ).getCode().equals( "XENTR" ) ) {
12212                 return false;
12213             }
12214             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "Western clawed frog" ) ) {
12215                 return false;
12216             }
12217             if ( !results.get( 0 ).getId().equalsIgnoreCase( "8364" ) ) {
12218                 return false;
12219             }
12220             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12221                 return false;
12222             }
12223             if ( !results.get( 0 ).getScientificName().equals( "Xenopus tropicalis" ) ) {
12224                 return false;
12225             }
12226             if ( !results.get( 0 ).getLineage().get( results.get( 0 ).getLineage().size() - 1 )
12227                     .equals( "Xenopus tropicalis" ) ) {
12228                 System.out.println( results.get( 0 ).getLineage() );
12229                 return false;
12230             }
12231             //
12232             results = null;
12233             results = SequenceDbWsTools.getTaxonomiesFromId( "8364", 10 );
12234             if ( results.size() != 1 ) {
12235                 return false;
12236             }
12237             if ( !results.get( 0 ).getCode().equals( "XENTR" ) ) {
12238                 return false;
12239             }
12240             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "Western clawed frog" ) ) {
12241                 return false;
12242             }
12243             if ( !results.get( 0 ).getId().equalsIgnoreCase( "8364" ) ) {
12244                 return false;
12245             }
12246             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12247                 return false;
12248             }
12249             if ( !results.get( 0 ).getScientificName().equals( "Xenopus tropicalis" ) ) {
12250                 return false;
12251             }
12252             if ( !results.get( 0 ).getLineage().get( results.get( 0 ).getLineage().size() - 1 )
12253                     .equals( "Xenopus tropicalis" ) ) {
12254                 System.out.println( results.get( 0 ).getLineage() );
12255                 return false;
12256             }
12257             //
12258             results = null;
12259             results = SequenceDbWsTools.getTaxonomiesFromTaxonomyCode( "XENTR", 10 );
12260             if ( results.size() != 1 ) {
12261                 return false;
12262             }
12263             if ( !results.get( 0 ).getCode().equals( "XENTR" ) ) {
12264                 return false;
12265             }
12266             if ( !results.get( 0 ).getCommonName().equalsIgnoreCase( "Western clawed frog" ) ) {
12267                 return false;
12268             }
12269             if ( !results.get( 0 ).getId().equalsIgnoreCase( "8364" ) ) {
12270                 return false;
12271             }
12272             if ( !results.get( 0 ).getRank().equalsIgnoreCase( "species" ) ) {
12273                 return false;
12274             }
12275             if ( !results.get( 0 ).getScientificName().equals( "Xenopus tropicalis" ) ) {
12276                 return false;
12277             }
12278             if ( !results.get( 0 ).getLineage().get( results.get( 0 ).getLineage().size() - 1 )
12279                     .equals( "Xenopus tropicalis" ) ) {
12280                 System.out.println( results.get( 0 ).getLineage() );
12281                 return false;
12282             }
12283         }
12284         catch ( final IOException e ) {
12285             System.out.println();
12286             System.out.println( "the following might be due to absence internet connection:" );
12287             e.printStackTrace( System.out );
12288             return true;
12289         }
12290         catch ( final Exception e ) {
12291             return false;
12292         }
12293         return true;
12294     }
12295
12296     private static boolean testWabiTxSearch() {
12297         try {
12298             String result = "";
12299             result = TxSearch.searchSimple( "nematostella" );
12300             result = TxSearch.getTxId( "nematostella" );
12301             if ( !result.equals( "45350" ) ) {
12302                 return false;
12303             }
12304             result = TxSearch.getTxName( "45350" );
12305             if ( !result.equals( "Nematostella" ) ) {
12306                 return false;
12307             }
12308             result = TxSearch.getTxId( "nematostella vectensis" );
12309             if ( !result.equals( "45351" ) ) {
12310                 return false;
12311             }
12312             result = TxSearch.getTxName( "45351" );
12313             if ( !result.equals( "Nematostella vectensis" ) ) {
12314                 return false;
12315             }
12316             result = TxSearch.getTxId( "Bacillus subtilis subsp. subtilis str. N170" );
12317             if ( !result.equals( "536089" ) ) {
12318                 return false;
12319             }
12320             result = TxSearch.getTxName( "536089" );
12321             if ( !result.equals( "Bacillus subtilis subsp. subtilis str. N170" ) ) {
12322                 return false;
12323             }
12324             final List<String> queries = new ArrayList<String>();
12325             queries.add( "Campylobacter coli" );
12326             queries.add( "Escherichia coli" );
12327             queries.add( "Arabidopsis" );
12328             queries.add( "Trichoplax" );
12329             queries.add( "Samanea saman" );
12330             queries.add( "Kluyveromyces marxianus" );
12331             queries.add( "Bacillus subtilis subsp. subtilis str. N170" );
12332             queries.add( "Bornavirus parrot/PDD/2008" );
12333             final List<RANKS> ranks = new ArrayList<RANKS>();
12334             ranks.add( RANKS.SUPERKINGDOM );
12335             ranks.add( RANKS.KINGDOM );
12336             ranks.add( RANKS.FAMILY );
12337             ranks.add( RANKS.GENUS );
12338             ranks.add( RANKS.TRIBE );
12339             result = TxSearch.searchLineage( queries, ranks );
12340             result = TxSearch.searchParam( "Homo sapiens", TAX_NAME_CLASS.ALL, TAX_RANK.SPECIES, 10, true );
12341             result = TxSearch.searchParam( "Samanea saman", TAX_NAME_CLASS.SCIENTIFIC_NAME, TAX_RANK.ALL, 10, true );
12342         }
12343         catch ( final Exception e ) {
12344             System.out.println();
12345             System.out.println( "the following might be due to absence internet connection:" );
12346             e.printStackTrace( System.out );
12347             return false;
12348         }
12349         return true;
12350     }
12351 }