From: cmzmasek@gmail.com Date: Mon, 19 Sep 2011 17:40:29 +0000 (+0000) Subject: in progress X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=9fe19ef3fae04d8403a6cbcf67443f38c9ba4491;p=jalview.git in progress --- diff --git a/forester/java/src/org/forester/application/get_subtree_specific_chars.java b/forester/java/src/org/forester/application/get_subtree_specific_chars.java index 2f0f143..3b6de88 100644 --- a/forester/java/src/org/forester/application/get_subtree_specific_chars.java +++ b/forester/java/src/org/forester/application/get_subtree_specific_chars.java @@ -39,6 +39,8 @@ import org.forester.util.ForesterUtil; public class get_subtree_specific_chars { + final static boolean SIMPLE = true; + public static void main( final String args[] ) { if ( args.length != 1 ) { System.err.println(); @@ -61,7 +63,6 @@ public class get_subtree_specific_chars { final SortedSet all_chars = getAllExternalPresentAndGainedCharacters( phy.getRoot() ); System.out.println( "Sum of all external characters:\t" + all_chars.size() ); System.out.println(); - final boolean SIMPLE = false; for( final PhylogenyNodeIterator iter = phy.iteratorPostorder(); iter.hasNext(); ) { final PhylogenyNode node = iter.next(); if ( !SIMPLE && node.isExternal() ) {