Trees | Indices | Help |
---|
|
1 # Copyright 2000 by Jeffrey Chang. 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 6 """ 7 This module is deprecated; its functions are now available from Bio.SCOP. 8 9 Provides code to access SCOP over the WWW. The main SCOP web page 10 is available at: 11 http://scop.mrc-lmb.cam.ac.uk/scop/ 12 13 Functions: 14 search Access the main CGI script. 15 _open 16 17 """ 18 19 import warnings 20 warnings.warn("Bio.WWW.SCOP was deprecated. Its functionality is now available from Bio.SCOP.") 21 22 23 from Bio import SCOP 24 search = SCOP.search 25 _open = SCOP._open 26
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Sep 15 09:26:48 2008 | http://epydoc.sourceforge.net |