Package Bio :: Package Phylo :: Package Applications
[hide private]
[frames] | no frames]

Source Code for Package Bio.Phylo.Applications

 1  # Copyright 2011 by Eric Talevich.  All rights reserved. 
 2  # This code is part of the Biopython distribution and governed by its 
 3  # license.  Please see the LICENSE file that should have been included 
 4  # as part of this package. 
 5  """Phylogenetics command line tool wrappers.""" 
 6  __docformat__ = "restructuredtext en" 
 7   
 8  from _Phyml import PhymlCommandline 
 9  from _Raxml import RaxmlCommandline 
10   
11  #Make this explicit, then they show up in the API docs 
12  __all__ = ["PhymlCommandline", 
13             "RaxmlCommandline", 
14             ] 
15