org.forester.test.examples.Example1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of forester Show documentation
Show all versions of forester Show documentation
Applications and software libraries for evolutionary biology and comparative genomics research
The newest version!
// $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: https://sites.google.com/site/cmzmasek/home/software/forester
package org.forester.test.examples;
import java.io.File;
import java.io.IOException;
import org.forester.archaeopteryx.Archaeopteryx;
import org.forester.io.parsers.PhylogenyParser;
import org.forester.io.parsers.util.ParserUtils;
import org.forester.phylogeny.Phylogeny;
import org.forester.phylogeny.PhylogenyMethods;
public class Example1 {
public static void main( final String[] args ) {
// Reading-in of (a) tree(s) from a file.
final File treefile = new File( "/home/czmasek/tol_117_TEST.xml" );
PhylogenyParser parser = null;
try {
parser = ParserUtils.createParserDependingOnFileType( treefile, true );
}
catch ( final IOException e ) {
e.printStackTrace();
}
Phylogeny[] phys = null;
try {
phys = PhylogenyMethods.readPhylogenies( parser, treefile );
}
catch ( final IOException e ) {
e.printStackTrace();
}
// Display of the tree(s) with Archaeopteryx.
Archaeopteryx.createApplication( phys );
}
}