Trees | Indices | Help |
---|
|
1 # Copyright 2001 by Katharine Lindner. 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 """ 8 This module is deprecated; its functions are now available from Bio.InterPro. 9 10 This module provides code to access resources at InterPro over the WWW. 11 http://www.ebi.ac.uk/interpro 12 13 14 Functions: 15 get_interpro_entry 16 17 """ 18 19 20 import warnings 21 warnings.warn("Bio.WWW.InterPro was deprecated. Its functionality is now available from Bio.InterPro.") 22 23 24 from Bio import InterPro 25 get_interpro_entry = InterPro.get_interpro_entry 26
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Sep 15 09:26:41 2008 | http://epydoc.sourceforge.net |