X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fapplication%2Fsimple_node_processor.java;h=a190edfb84d2413193d3ae30db6948b3d4c718bb;hb=4e202b796a689419621ddc2c3934797c39af9026;hp=033bd9fc7e3e05dde55a732c0a09d74cf9d8a485;hpb=b606686e01ec42a13f9a91103c7e338925497101;p=jalview.git diff --git a/forester/java/src/org/forester/application/simple_node_processor.java b/forester/java/src/org/forester/application/simple_node_processor.java index 033bd9f..a190edf 100644 --- a/forester/java/src/org/forester/application/simple_node_processor.java +++ b/forester/java/src/org/forester/application/simple_node_processor.java @@ -40,18 +40,17 @@ public class simple_node_processor { private final static String BASE = "b_"; public static void main( final String args[] ) { - if ( ( args.length != 2 ) ) { - System.exit( -1 ); - } + File in = null; + final File out = null; try { CommandLineArguments cla = null; cla = new CommandLineArguments( args ); - final File in = cla.getFile( 0 ); - final File out = cla.getFile( 1 ); - if ( out.exists() ) { - System.out.println( out + " already exists" ); - System.exit( -1 ); - } + in = cla.getFile( 0 ); + // out = cla.getFile( 1 ); + // if ( out.exists() ) { + // System.out.println( out + " already exists" ); + // System.exit( -1 ); + // } final PhylogenyFactory factory = ParserBasedPhylogenyFactory.getInstance(); final PhyloXmlParser xml_parser = new PhyloXmlParser(); final Phylogeny[] phylogenies_0 = factory.create( in, xml_parser );