From a7e639b38242f2cfeed7e2f517bc1fe530a782af Mon Sep 17 00:00:00 2001 From: "cmzmasek@gmail.com" Date: Thu, 3 Nov 2011 05:26:45 +0000 Subject: [PATCH] Edited wiki page forester through web user interface. --- wiki/forester.wiki | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/wiki/forester.wiki b/wiki/forester.wiki index 4175faf..a97ebeb 100644 --- a/wiki/forester.wiki +++ b/wiki/forester.wiki @@ -287,25 +287,28 @@ import org.forester.archaeopteryx.TreeColorSet; public class phylo2graphics { - public static void main(final String[] args) { - try { - Configuration config = new Configuration(); - // Could also read a configuration file with: - // Configuration config = new Configuration("my_configuration_file.txt", false, false, false); - - config.putDisplayColors(TreeColorSet.BACKGROUND, new Color(255, 255, 255)); - config.putDisplayColors(TreeColorSet.BRANCH, new Color(0, 0, 0)); - config.putDisplayColors(TreeColorSet.TAXONOMY, new Color(0, 0, 0)); - config.setPhylogenyGraphicsType(Options.PHYLOGENY_GRAPHICS_TYPE.RECTANGULAR); - AptxUtil.writePhylogenyToGraphicsFileNonInteractive(new File( + public static void main(final String[] args) { + try { + Configuration config = new Configuration(); + // Could also read a configuration file with: + // Configuration config = new Configuration("my_configuration_file.txt", false, false, false); + + config.putDisplayColors(TreeColorSet.BACKGROUND, new Color(255, 255, 255)); + config.putDisplayColors(TreeColorSet.BRANCH, new Color(0, 0, 0)); + config.putDisplayColors(TreeColorSet.TAXONOMY, new Color(0, 0, 0)); + + + config.setPhylogenyGraphicsType(Options.PHYLOGENY_GRAPHICS_TYPE.RECTANGULAR); + + AptxUtil.writePhylogenyToGraphicsFileNonInteractive(new File( "/home/czmasek/tol_117_TEST.xml"), new File( "/home/czmasek/tol_117_TEST_.png"), 1000, 1000, GraphicsExportType.PNG, config); - } - catch (IOException e) { - e.printStackTrace(); - } - } + } + catch (IOException e) { + e.printStackTrace(); + } + } } }}} \ No newline at end of file -- 1.7.10.2