package org.forester.applications; // $Id: // FORESTER -- software libraries and applications // for evolutionary biology research and applications. // // Copyright (C) 2008-2011 Christian M. Zmasek // Copyright (C) 2008-2011 Burnham Institute for Medical Research // All rights reserved // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com // WWW: www.phylosoft.org/forester // javac -cp ~/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester/java/forester.jar // ~/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester_applications/src/org/forester/applications/get_shared_chars.java // java -Xmx2048m -cp // /home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester_applications/src/:/home/czmasek/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester/java/forester.jar // org.forester.applications.get_shared_chars import java.io.File; import java.util.List; import java.util.SortedSet; import java.util.TreeSet; import org.forester.io.parsers.util.ParserUtils; import org.forester.phylogeny.Phylogeny; import org.forester.phylogeny.PhylogenyNode; import org.forester.phylogeny.factories.ParserBasedPhylogenyFactory; import org.forester.phylogeny.factories.PhylogenyFactory; public class get_shared_chars { public final static boolean DEBUG = true; public static void main( final String args[] ) { if ( args.length < 2 ) { System.err.println(); System.err.println( "get_subtree_specific_chars: wrong number of arguments" ); System.err.println( "Usage: \"get_shared_chars ... " ); System.err.println(); System.exit( -1 ); } final File infile = new File( args[ 0 ] ); Phylogeny phy = null; try { final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance(); phy = factory.create( infile, ParserUtils.createParserDependingOnFileType( infile, true ) )[ 0 ]; } catch ( final Exception e ) { System.err.println( e + "\nCould not read " + infile + "\n" ); System.exit( -1 ); } final SortedSet outside_external_ids = getAllExternalDescendantsNodeIds( phy.getRoot() ); final SortedSet all_chars = getAllExternalPresentAndGainedCharacters( phy.getRoot() ); System.out.println( "Sum of all external characters:\t" + all_chars.size() ); final SortedSet all_shared_chars = new TreeSet(); for( int i = 1; i < args.length; ++i ) { System.out.print( args[ i ] + "\t" ); final PhylogenyNode current_node = phy.getNode( args[ i ] ); if ( i == 1 ) { all_shared_chars.addAll( getAllExternalPresentAndGainedCharacters( current_node ) ); } else { all_shared_chars.retainAll( getAllExternalPresentAndGainedCharacters( current_node ) ); } outside_external_ids.removeAll( getAllExternalDescendantsNodeIds( current_node ) ); } System.out.println(); if ( DEBUG ) { System.out.println( "Number of outside nodes: " + outside_external_ids.size() ); } final SortedSet outside_chars = new TreeSet(); System.out.println( "All shared characters\t" + all_shared_chars.size() ); for( final Long id : outside_external_ids ) { outside_chars.addAll( getAllExternalPresentAndGainedCharacters( phy.getNode( id ) ) ); } final SortedSet unique_shared_chars = copy( all_shared_chars ); unique_shared_chars.removeAll( outside_chars ); System.out.println( "Unique shared characters\t" + unique_shared_chars.size() ); System.out.println(); System.out.println( "Unique shared characters:" ); for( final String unique_shared_char : unique_shared_chars ) { System.out.println( unique_shared_char ); } } private static SortedSet copy( final SortedSet set ) { final SortedSet copy = new TreeSet(); for( final String s : set ) { copy.add( s ); } return copy; } private static SortedSet getAllExternalDescendantsNodeIds( final PhylogenyNode node ) { final SortedSet ids = new TreeSet(); final List descs = node.getAllExternalDescendants(); for( final PhylogenyNode desc : descs ) { ids.add( desc.getId() ); } return ids; } private static SortedSet getAllExternalPresentAndGainedCharacters( final PhylogenyNode node ) { final SortedSet chars = new TreeSet(); final List descs = node.getAllExternalDescendants(); for( final PhylogenyNode desc : descs ) { chars.addAll( desc.getNodeData().getBinaryCharacters().getGainedCharacters() ); chars.addAll( desc.getNodeData().getBinaryCharacters().getPresentCharacters() ); } return chars; } }