Package ete2
[hide private]
[frames] | no frames]

Source Code for Package ete2

 1  __VERSION__="ete2-2.0rev94"  
 2  # #START_LICENSE########################################################### 
 3  # 
 4  # Copyright (C) 2009 by Jaime Huerta Cepas. All rights reserved.   
 5  # email: jhcepas@gmail.com 
 6  # 
 7  # This file is part of the Environment for Tree Exploration program (ETE).  
 8  # http://ete.cgenomics.org 
 9  #   
10  # ETE is free software: you can redistribute it and/or modify it 
11  # under the terms of the GNU General Public License as published by 
12  # the Free Software Foundation, either version 3 of the License, or 
13  # (at your option) any later version. 
14  #   
15  # ETE is distributed in the hope that it will be useful, 
16  # but WITHOUT ANY WARRANTY; without even the implied warranty of 
17  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
18  # GNU General Public License for more details. 
19  #   
20  # You should have received a copy of the GNU General Public License 
21  # along with ETE.  If not, see <http://www.gnu.org/licenses/>. 
22  # 
23  # #END_LICENSE############################################################# 
24   
25  from sys import stderr 
26  from coretype.tree import * 
27  from coretype.seqgroup import * 
28  from phylo.phylotree import * 
29  try: 
30      from coretype.arraytable import * 
31  except ImportError, e: 
32      print >>stderr, "Clustering module could not be loaded" 
33      print e 
34  else: 
35      from clustering.clustertree import * 
36   
37  try: 
38      from phylomedb.phylomeDB import * 
39  except ImportError, e: 
40      print >>stderr, " MySQLdb module could not be loaded" 
41      print e 
42   
43  try: 
44      from treeview.drawer import * 
45      from treeview import faces 
46      from treeview import layouts 
47  except ImportError, e: 
48      print >>stderr, "Treeview module could not be loaded" 
49      print e 
50