Package Biskit :: Package Dock
[hide private]
[frames] | no frames]

Source Code for Package Biskit.Dock

 1  ## 
 2  ## Biskit, a toolkit for the manipulation of macromolecular structures 
 3  ## Copyright (C) 2004-2006 Raik Gruenberg & Johan Leckner 
 4  ## 
 5  ## This program is free software; you can redistribute it and/or 
 6  ## modify it under the terms of the GNU General Public License as 
 7  ## published by the Free Software Foundation; either version 2 of the 
 8  ## License, or any later version. 
 9  ## 
10  ## This program is distributed in the hope that it will be useful, 
11  ## but WITHOUT ANY WARRANTY; without even the implied warranty of 
12  ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
13  ## General Public License for more details. 
14  ## 
15  ## You find a copy of the GNU General Public License in the file 
16  ## license.txt along with this program; if not, write to the Free 
17  ## Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
18  """ 
19  Protein-protein docking related modules 
20  """ 
21  from Biskit import EHandler 
22   
23  try: 
24      from Complex import Complex 
25      from ComplexEvolving import ComplexEvolving 
26      from ComplexEvolvingList import ComplexEvolvingList 
27      from ComplexList import ComplexList 
28      from ComplexTraj import ComplexTraj 
29      from ComplexModelRegistry import ComplexModelRegistry 
30      from ComplexRandomizer import ComplexRandomizer 
31      from Docker import Docker 
32      from FixedList import FixedList 
33      from HexParser import HexParser 
34   
35  except Exception, why: 
36      EHandler.warning("Couldn't import all Biskit.Dock modules.\n" + str(why)) 
37   
38  ## PVM-dependent modules 
39  try: 
40      from ContactMaster import ContactMaster 
41      from ContactSlave import ContactSlave 
42  except Exception, why: 
43      EHandler.warning("Couldn't import PVM-dependent modules of Biskit.Dock.\n"+\ 
44                       str( why ) ) 
45