From b96911486cf95ca1ab4290362ac0c2b445a8db4a Mon Sep 17 00:00:00 2001 From: "cmzmasek@gmail.com" Date: Thu, 2 Jun 2011 23:51:00 +0000 Subject: [PATCH] Edited wiki page forester through web user interface. --- wiki/forester.wiki | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wiki/forester.wiki b/wiki/forester.wiki index 1d06b00..537e2d8 100644 --- a/wiki/forester.wiki +++ b/wiki/forester.wiki @@ -22,7 +22,6 @@ import java.io.File; import java.io.IOException; import org.forester.archaeopteryx.Archaeopteryx; -import org.forester.archaeopteryx.Util; import org.forester.io.parsers.PhylogenyParser; import org.forester.phylogeny.Phylogeny; import org.forester.util.ForesterUtil; @@ -31,7 +30,7 @@ public class Example1 { public static void main( final String[] args ) { // Reads in (a) tree(s) from a file. - final File treefile = new File( "/path/to/trees.xml" ); + final File treefile = new File( "/path/to/tree.xml" ); PhylogenyParser parser = null; try { parser = ForesterUtil.createParserDependingOnFileType( treefile, true ); @@ -41,7 +40,7 @@ public class Example1 { } Phylogeny[] phys = null; try { - phys = Util.readPhylogenies( parser, treefile ); + phys = ForesterUtil.readPhylogenies( parser, treefile ); } catch ( final IOException e ) { e.printStackTrace(); -- 1.7.10.2