update to 1.44 from Will Maier (new MAINTAINER)

ok merdely
This commit is contained in:
okan 2008-01-12 02:00:24 +00:00
parent 6206a1212d
commit fc0db83b02
7 changed files with 125 additions and 895 deletions

View File

@ -1,14 +1,16 @@
# $OpenBSD: Makefile,v 1.11 2008/01/11 09:28:20 winiger Exp $
# $OpenBSD: Makefile,v 1.12 2008/01/12 02:00:24 okan Exp $
SHARED_ONLY= Yes
COMMENT= Python tools for computational molecular biology
DISTNAME= biopython-1.41
PKGNAME= py-${DISTNAME}p4
DISTNAME= biopython-1.44
PKGNAME= py-${DISTNAME}
CATEGORIES= biology
HOMEPAGE= http://www.biopython.org/
MAINTAINER= Will Maier <willmaier@ml1.net>
# BSD-like
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
@ -20,26 +22,28 @@ MASTER_SITES= ${HOMEPAGE}DIST/
MODULES= lang/python
PY_FLAVOR= python${MODPY_VERSION}
WANTLIB+= stdc++
BUILD_DEPENDS= ${MODPY_EXPAT_DEPENDS} \
::math/py-Numeric
::math/py-Numeric \
::devel/swig
RUN_DEPENDS= ${MODPY_EXPAT_DEPENDS} \
:py-mxDateTime-*-${PY_FLAVOR}:devel/py-mxDateTime,${PY_FLAVOR} \
:py-Numeric-*:math/py-Numeric \
:py-reportlab-*:print/py-reportlab/reportlab
REGRESS_DEPENDS=${RUN_DEPENDS}
EXAMPLESDIR= ${PREFIX}/share/examples/py-biopython
pre-configure:
@echo '5\nm2\nwq' | ed -s ${WRKSRC}/Bio/Wise/dnal.py
CFLAGS+= -fPIC
post-install:
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
cd ${WRKSRC}/Tests; tar cf - * | tar xf - -C ${EXAMPLESDIR}
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-biopython/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-biopython/
${INSTALL_DATA} ${WRKSRC}/Doc/*.txt ${PREFIX}/share/doc/py-biopython/
cd ${WRKSRC}/Doc/examples; tar cf - * | \
tar xf - -C ${PREFIX}/share/examples/py-biopython
do-regress: fake
@rm -f ${WRKSRC}/Tests/test_copen.py*
@cd ${WRKSRC}/Tests && ${MAKE_ENV} \
@cd ${WRKSRC}/Tests && \
PYTHONPATH=${WRKINST}${MODPY_SITEPKG} \
${MODPY_BIN} ./run_tests.py --no-gui

View File

@ -1,5 +1,5 @@
MD5 (biopython-1.41.tar.gz) = A/jvwlj7SbB9GitkL6g2Lg==
RMD160 (biopython-1.41.tar.gz) = 961eFwpqN0D6vjgocVuD/Ew+Fa4=
SHA1 (biopython-1.41.tar.gz) = p6O6xgasxbW3ClZUAvnCgSCbqLk=
SHA256 (biopython-1.41.tar.gz) = FbcIt2Nf2ZOq08U/1M/ChgHabUMysCfQmJnxy1F4zvk=
SIZE (biopython-1.41.tar.gz) = 3807547
MD5 (biopython-1.44.tar.gz) = dix6NYr53Fi3Eri0u5nQwg==
RMD160 (biopython-1.44.tar.gz) = 7Lvi9G8OXRJNkQYy3Jp/0FEgLAs=
SHA1 (biopython-1.44.tar.gz) = yio1yekqIZJW/k/CojLfUyj59dk=
SHA256 (biopython-1.44.tar.gz) = 5HxKfGEuEctsHAUVJ0ziMWRrMbvxyeOsWJmJKMCtPHI=
SIZE (biopython-1.44.tar.gz) = 3840036

View File

@ -1,216 +0,0 @@
$OpenBSD: patch-Bio_Cluster_clustermodule_c,v 1.2 2007/10/18 15:22:15 ajacoutot Exp $
--- Bio/Cluster/clustermodule.c.orig Wed Apr 27 10:09:08 2005
+++ Bio/Cluster/clustermodule.c Thu Oct 18 17:11:50 2007
@@ -111,7 +111,7 @@ parse_mask (PyObject* object, PyArrayObject** array, c
return mask;
}
if(!PyArray_Check (object)) /* Try to convert object to a 2D double array */
- { *array = (PyArrayObject*) PyArray_FromObject(object, PyArray_LONG, 2, 2);
+ { *array = (PyArrayObject*) PyArray_FromObject(object, PyArray_INT, 2, 2);
if (!(*array))
{ strcpy (message, "mask cannot be converted to needed array");
PyErr_SetString(ErrorObject, buffer);
@@ -121,8 +121,8 @@ parse_mask (PyObject* object, PyArrayObject** array, c
else /* User passed an array */
{ *array = (PyArrayObject*) object;
Py_INCREF(object);
- if ((*array)->descr->type_num != PyArray_LONG)
- { PyArrayObject* av = (PyArrayObject*) PyArray_Cast (*array, PyArray_LONG);
+ if ((*array)->descr->type_num != PyArray_INT)
+ { PyArrayObject* av = (PyArrayObject*) PyArray_Cast (*array, PyArray_INT);
Py_DECREF((PyObject*) *array);
*array = av;
if (!(*array))
@@ -281,7 +281,7 @@ parse_initialid(PyObject* object, int* nclusters, int
PyArrayObject* array;
/* -- First we create the clusterid variable ------------------------ */
PyArrayObject* clusterid =
- (PyArrayObject*) PyArray_FromDims(1, &nitems, PyArray_LONG);
+ (PyArrayObject*) PyArray_FromDims(1, &nitems, PyArray_INT);
if (!clusterid)
{ strcpy(message, "Could not create clusterid array -- too big?");
PyErr_SetString (ErrorObject, buffer);
@@ -291,7 +291,7 @@ parse_initialid(PyObject* object, int* nclusters, int
if (object==NULL) return clusterid;
/* -- Check if the specified object is an array --------------------- */
if(!PyArray_Check (object))
- { array = (PyArrayObject*) PyArray_FromObject(object, PyArray_LONG,1,1);
+ { array = (PyArrayObject*) PyArray_FromObject(object, PyArray_INT,1,1);
if (!array)
{ strcpy (message, "initialid cannot be converted to needed array.");
PyErr_SetString(ErrorObject, buffer);
@@ -304,8 +304,8 @@ parse_initialid(PyObject* object, int* nclusters, int
Py_INCREF(object);
}
/* -- Check if the array contains integers -------------------------- */
- if (array->descr->type_num != PyArray_LONG)
- { PyArrayObject* av = (PyArrayObject*) PyArray_Cast(array, PyArray_LONG);
+ if (array->descr->type_num != PyArray_INT)
+ { PyArrayObject* av = (PyArrayObject*) PyArray_Cast(array, PyArray_INT);
Py_DECREF((PyObject*) array);
array = av;
if (!array)
@@ -394,7 +394,7 @@ parse_clusterid(PyObject* object, PyArrayObject** arra
}
/* -- The user specified something. Let's see if it is an array ----- */
if(!PyArray_Check (object))
- { *array = (PyArrayObject*) PyArray_FromObject(object, PyArray_LONG,1,1);
+ { *array = (PyArrayObject*) PyArray_FromObject(object, PyArray_INT,1,1);
if (!(*array))
{ strcpy (message, "clusterid cannot be converted to needed array.");
PyErr_SetString(ErrorObject, buffer);
@@ -406,8 +406,8 @@ parse_clusterid(PyObject* object, PyArrayObject** arra
Py_INCREF(object);
}
/* -- Check if the array contains integers -------------------------- */
- if ((*array)->descr->type_num != PyArray_LONG)
- { PyArrayObject* av = (PyArrayObject*) PyArray_Cast(*array, PyArray_LONG);
+ if ((*array)->descr->type_num != PyArray_INT)
+ { PyArrayObject* av = (PyArrayObject*) PyArray_Cast(*array, PyArray_INT);
Py_DECREF((PyObject*) (*array));
*array = av;
if (!(*array))
@@ -663,7 +663,7 @@ parse_index(PyObject* object, PyArrayObject** array, i
/* Check if the user specified an array */
if(!PyArray_Check (object)) /* Try to convert to an array of type long */
{ *array = (PyArrayObject*)
- PyArray_ContiguousFromObject(object, PyArray_LONG, 1, 1);
+ PyArray_ContiguousFromObject(object, PyArray_INT, 1, 1);
if (!(*array))
{ strcpy(message, "index argument cannot be converted to needed type.");
PyErr_SetString (ErrorObject, buffer);
@@ -672,7 +672,7 @@ parse_index(PyObject* object, PyArrayObject** array, i
}
}
/* If an array, make sure it contains integers */
- else if ((*array)->descr->type_num == PyArray_LONG)
+ else if ((*array)->descr->type_num == PyArray_INT)
{ *array = (PyArrayObject*) object;
Py_INCREF(object);
}
@@ -697,7 +697,7 @@ parse_index(PyObject* object, PyArrayObject** array, i
}
if (!(*array)->flags & CONTIGUOUS)
{ PyObject* av =
- PyArray_ContiguousFromObject((PyObject*) array, PyArray_LONG, 0, 0);
+ PyArray_ContiguousFromObject((PyObject*) array, PyArray_INT, 0, 0);
Py_DECREF(object); /* can only happen if *array==(PyArrayObject*)object */
if(!av)
{ strcpy(message, "Failed making argument index contiguous.");
@@ -800,7 +800,7 @@ py_kcluster (PyObject* self, PyObject* args, PyObject*
"dist",
"initialid",
NULL };
- if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|lOOllccO", kwlist,
+ if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|iOOiiccO", kwlist,
&DATA,
&NCLUSTERS,
&MASK,
@@ -899,7 +899,7 @@ py_kcluster (PyObject* self, PyObject* args, PyObject*
free_weight(aWEIGHT, weight);
/* --------------------------------------------------------------------- */
- return Py_BuildValue("Ndl", aCLUSTERID, ERROR, IFOUND);
+ return Py_BuildValue("Ndi", aCLUSTERID, ERROR, IFOUND);
}
/* end of wrapper for kcluster */
@@ -1015,7 +1015,7 @@ py_kmedoids (PyObject* self, PyObject* args, PyObject*
strcpy(message, "Unknown error in kmedoids");
return NULL;
}
- return Py_BuildValue("Ndl",aCLUSTERID, ERROR, IFOUND);
+ return Py_BuildValue("Ndi",aCLUSTERID, ERROR, IFOUND);
}
/* end of wrapper for kmedoids */
@@ -1091,7 +1091,7 @@ py_treecluster (PyObject* self, PyObject* args, PyObje
"dist",
"distancematrix",
NULL };
- if(!PyArg_ParseTupleAndKeywords(args, keywords, "|OOOlccO", kwlist,
+ if(!PyArg_ParseTupleAndKeywords(args, keywords, "|OOOiccO", kwlist,
&DATA,
&MASK,
&WEIGHT,
@@ -1165,7 +1165,7 @@ py_treecluster (PyObject* self, PyObject* args, PyObje
/* -- Create the output variable tree ---------------------------------- */
shape[0] = nnodes;
shape[1] = 2;
- aRESULT = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_LONG);
+ aRESULT = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_INT);
if (!aRESULT)
{ strcpy(message, "Could not create array for return value -- too big?");
PyErr_SetString(ErrorObject, buffer);
@@ -1228,7 +1228,7 @@ py_treecluster (PyObject* self, PyObject* args, PyObje
/* -- Create the output variable tree ---------------------------------- */
shape[0] = nnodes;
shape[1] = 2;
- aRESULT = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_LONG);
+ aRESULT = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_INT);
if (!aRESULT)
{ strcpy(message, "Could not create array for return value -- too big?");
PyErr_SetString(ErrorObject, buffer);
@@ -1341,7 +1341,7 @@ py_somcluster (PyObject* self, PyObject* args, PyObjec
"niter",
"dist",
NULL };
- if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOllldlc", kwlist,
+ if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOiiidic", kwlist,
&DATA,
&MASK,
&WEIGHT,
@@ -1403,7 +1403,7 @@ py_somcluster (PyObject* self, PyObject* args, PyObjec
/* --------------------------------------------------------------------- */
shape[0] = nitems;
shape[1] = 2;
- aCLUSTERID = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_LONG);
+ aCLUSTERID = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_INT);
if (!aCLUSTERID)
{ strcpy(buffer, "somcluster: Could not create clusterid array -- too big?");
PyErr_SetString (ErrorObject, buffer);
@@ -1656,7 +1656,7 @@ py_clusterdistance (PyObject* self, PyObject* args, Py
"dist",
"transpose",
NULL };
- if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOOOccl", kwlist,
+ if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOOOcci", kwlist,
&DATA,
&MASK,
&WEIGHT,
@@ -1826,7 +1826,7 @@ py_clustercentroid (PyObject* self, PyObject* args, Py
for (i=0; i<shape[0]; i++)
cdata[i] = ((double*) (aCDATA->data)) + i*shape[1];
/* -- Create the centroid mask output variable ------------------------- */
- aCMASK = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_LONG);
+ aCMASK = (PyArrayObject*) PyArray_FromDims(2, shape, PyArray_INT);
if (!aCMASK)
{ strcpy(message, "Could not create centroids array -- too big?");
PyErr_SetString (ErrorObject, buffer);
@@ -1934,7 +1934,7 @@ py_distancematrix (PyObject* self, PyObject* args, PyO
"transpose",
"dist",
NULL };
- if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOlc", kwlist,
+ if(!PyArg_ParseTupleAndKeywords(args, keywords, "O|OOic", kwlist,
&DATA,
&MASK,
&WEIGHT,
@@ -2056,7 +2056,7 @@ py_cuttree (PyObject* self, PyObject* args, PyObject*
{ aTREE = (PyArrayObject*) TREE;
Py_INCREF((PyObject*) aTREE);
}
- if (aTREE->descr->type_num != PyArray_LONG)
+ if (aTREE->descr->type_num != PyArray_INT)
{ PyErr_SetString (ErrorObject,
"cuttree: Argument tree should contain integer values only");
return NULL;
@@ -2095,7 +2095,7 @@ py_cuttree (PyObject* self, PyObject* args, PyObject*
return NULL;
}
/* -- Create the clusterid output variable ----------------------------- */
- aCLUSTERID = (PyArrayObject*) PyArray_FromDims(1, &NELEMENTS, PyArray_LONG);
+ aCLUSTERID = (PyArrayObject*) PyArray_FromDims(1, &NELEMENTS, PyArray_INT);
if (!aCLUSTERID) {
PyErr_SetString (ErrorObject,
"cuttree: Could not create array for return value -- too big?");

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-Tests_run_tests_py,v 1.1 2005/12/03 22:34:52 alek Exp $
--- Tests/run_tests.py.orig Sun Nov 20 16:29:24 2005
+++ Tests/run_tests.py Sun Nov 20 16:29:35 2005
@@ -37,11 +37,11 @@ def main(argv):
$OpenBSD: patch-Tests_run_tests_py,v 1.2 2008/01/12 02:00:24 okan Exp $
--- Tests/run_tests.py.orig Thu Oct 11 20:39:07 2007
+++ Tests/run_tests.py Fri Dec 21 16:45:24 2007
@@ -39,11 +39,11 @@ def main(argv):
# A. Because Martel may not be in ../build/lib.*
test_path = sys.path[0] or "."
source_path = os.path.abspath("%s/.." % test_path)

View File

@ -1,15 +1,22 @@
$OpenBSD: patch-setup_py,v 1.4 2005/12/18 20:33:17 alek Exp $
--- setup.py.orig Fri Oct 28 21:41:02 2005
+++ setup.py Sun Dec 18 19:26:31 2005
@@ -65,6 +65,7 @@ def check_dependencies_once():
$OpenBSD: patch-setup_py,v 1.5 2008/01/12 02:00:24 okan Exp $
--- setup.py.orig Sat Oct 27 02:11:01 2007
+++ setup.py Fri Dec 21 16:56:57 2007
@@ -65,6 +65,14 @@ def check_dependencies_once():
return _CHECKED
def check_dependencies():
+ NUMPY_PACKAGES.append("Bio.KDTree")
+ NUMPY_EXTENSIONS.append(
+ CplusplusExtension('Bio.KDTree._CKDTree',
+ ["Bio/KDTree/KDTree.cpp",
+ "Bio/KDTree/KDTree.swig.cpp"],
+ libraries=["stdc++"],
+ language="c++"))
+ return 1
"""Return whether the installation should continue."""
# There should be some way for the user to tell specify not to
# check dependencies. For example, it probably should not if
@@ -254,7 +255,10 @@ def is_Martel_installed():
@@ -285,7 +293,10 @@ def is_Martel_installed():
bundled_martel_version = m.__version__
else:
bundled_martel_version = None

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1 2008/01/12 02:00:24 okan Exp $
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/_CKDTree.so

View File

@ -1,4 +1,5 @@
@comment $OpenBSD: PLIST,v 1.5 2007/11/02 10:10:11 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.6 2008/01/12 02:00:24 okan Exp $
%%SHARED%%
lib/python${MODPY_VERSION}/site-packages/Bio/
lib/python${MODPY_VERSION}/site-packages/Bio/Affy/
lib/python${MODPY_VERSION}/site-packages/Bio/Affy/CelFile.py
@ -8,8 +9,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/Affy/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Ais/
lib/python${MODPY_VERSION}/site-packages/Bio/Ais/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Ais/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Ais/example_ais2.py
lib/python${MODPY_VERSION}/site-packages/Bio/Ais/example_ais2.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Align/
lib/python${MODPY_VERSION}/site-packages/Bio/Align/AlignInfo.py
lib/python${MODPY_VERSION}/site-packages/Bio/Align/AlignInfo.pyc
@ -78,8 +77,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/
lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/cluster.so
lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/data.py
lib/python${MODPY_VERSION}/site-packages/Bio/Cluster/data.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Compass/
lib/python${MODPY_VERSION}/site-packages/Bio/Compass/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Compass/__init__.pyc
@ -252,6 +249,8 @@ lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/LocationParser.py
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/LocationParser.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/Record.py
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/Record.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/Scanner.py
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/Scanner.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/GenBank/utils.py
@ -261,8 +260,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/Geo/Record.py
lib/python${MODPY_VERSION}/site-packages/Bio/Geo/Record.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Geo/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Geo/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Geo/geo_format.py
lib/python${MODPY_VERSION}/site-packages/Bio/Geo/geo_format.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Gobase/
lib/python${MODPY_VERSION}/site-packages/Bio/Gobase/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Gobase/__init__.pyc
@ -302,31 +299,25 @@ lib/python${MODPY_VERSION}/site-packages/Bio/IntelliGenetics/intelligenetics_for
lib/python${MODPY_VERSION}/site-packages/Bio/InterPro/
lib/python${MODPY_VERSION}/site-packages/Bio/InterPro/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/InterPro/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/CKDTree.py
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/CKDTree.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/KDTree.py
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/KDTree.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/KDTree/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Compound/
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Compound/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Compound/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Compound/compound_format.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Compound/compound_format.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Enzyme/
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Enzyme/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Enzyme/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Enzyme/enzyme_format.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Enzyme/enzyme_format.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Map/
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Map/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Map/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Map/map_format.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/Map/map_format.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/KEGG/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/Record.py
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/Record.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/kabat_format.py
lib/python${MODPY_VERSION}/site-packages/Bio/Kabat/kabat_format.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/LocusLink/
lib/python${MODPY_VERSION}/site-packages/Bio/LocusLink/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/LocusLink/__init__.pyc
@ -490,6 +481,8 @@ lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PDBList.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PDBList.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PDBParser.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PDBParser.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PSEA.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/PSEA.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/Polypeptide.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/Polypeptide.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/Residue.py
@ -511,7 +504,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/PDB/Vector.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/mmCIF/
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/mmCIF/MMCIFlex.so
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/mmCIF/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/mmCIF/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PDB/parse_pdb_header.py
@ -535,6 +527,28 @@ lib/python${MODPY_VERSION}/site-packages/Bio/Pathway/Rep/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Pathway/Rep/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Pathway/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Pathway/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/Async/
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/Async/Local.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/Async/Local.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/Async/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/Async/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Async.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Async.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Controller.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Controller.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Utils.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/Utils.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/FDist/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/GenePop/
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/GenePop/Utils.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/GenePop/Utils.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/GenePop/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/GenePop/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/PopGen/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/PropertyManager.py
lib/python${MODPY_VERSION}/site-packages/Bio/PropertyManager.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Prosite/
@ -549,10 +563,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/PubMed.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Rebase/
lib/python${MODPY_VERSION}/site-packages/Bio/Rebase/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/Rebase/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/RecordFile.py
lib/python${MODPY_VERSION}/site-packages/Bio/RecordFile.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/ReseekFile.py
lib/python${MODPY_VERSION}/site-packages/Bio/ReseekFile.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Restriction/
lib/python${MODPY_VERSION}/site-packages/Bio/Restriction/DNAUtils.so
lib/python${MODPY_VERSION}/site-packages/Bio/Restriction/PrintFormat.py
@ -596,8 +606,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/SVDSuperimposer/SVDSuperimposer.py
lib/python${MODPY_VERSION}/site-packages/Bio/SVDSuperimposer/SVDSuperimposer.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SVDSuperimposer/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/SVDSuperimposer/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SVM.py
lib/python${MODPY_VERSION}/site-packages/Bio/SVM.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Saf/
lib/python${MODPY_VERSION}/site-packages/Bio/Saf/Record.py
lib/python${MODPY_VERSION}/site-packages/Bio/Saf/Record.pyc
@ -612,8 +620,24 @@ lib/python${MODPY_VERSION}/site-packages/Bio/Seq.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqFeature.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqFeature.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/ClustalIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/ClustalIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/FASTA.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/FASTA.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/FastaIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/FastaIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/InsdcIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/InsdcIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/Interfaces.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/Interfaces.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/NexusIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/NexusIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/PhylipIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/PhylipIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/StockholmIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/StockholmIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/SwissIO.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/SwissIO.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/generic.py
@ -621,6 +645,8 @@ lib/python${MODPY_VERSION}/site-packages/Bio/SeqIO/generic.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqRecord.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqRecord.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/CheckSum.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/CheckSum.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/CodonUsage.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/CodonUsage.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/CodonUsageIndices.py
@ -635,6 +661,8 @@ lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/ProtParamData.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/ProtParamData.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/lcc.py
lib/python${MODPY_VERSION}/site-packages/Bio/SeqUtils/lcc.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/Sequencing/
lib/python${MODPY_VERSION}/site-packages/Bio/Sequencing/Ace.py
lib/python${MODPY_VERSION}/site-packages/Bio/Sequencing/Ace.pyc
@ -710,9 +738,7 @@ lib/python${MODPY_VERSION}/site-packages/Bio/builders/SeqRecord/sequence.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/builders/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/builders/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/cMarkovModel.so
lib/python${MODPY_VERSION}/site-packages/Bio/cSVM.so
lib/python${MODPY_VERSION}/site-packages/Bio/cdistance.so
lib/python${MODPY_VERSION}/site-packages/Bio/ckMeans.so
lib/python${MODPY_VERSION}/site-packages/Bio/clistfns.so
lib/python${MODPY_VERSION}/site-packages/Bio/cmathfns.so
lib/python${MODPY_VERSION}/site-packages/Bio/config/
@ -808,8 +834,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/formatdefs/sequence.py
lib/python${MODPY_VERSION}/site-packages/Bio/formatdefs/sequence.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/formatdefs/swissprot.py
lib/python${MODPY_VERSION}/site-packages/Bio/formatdefs/swissprot.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/kMeans.py
lib/python${MODPY_VERSION}/site-packages/Bio/kMeans.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/kNN.py
lib/python${MODPY_VERSION}/site-packages/Bio/kNN.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/lcc.py
@ -820,8 +844,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/mathfns.py
lib/python${MODPY_VERSION}/site-packages/Bio/mathfns.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/pairwise2.py
lib/python${MODPY_VERSION}/site-packages/Bio/pairwise2.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/sequtils.py
lib/python${MODPY_VERSION}/site-packages/Bio/sequtils.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/stringfns.py
lib/python${MODPY_VERSION}/site-packages/Bio/stringfns.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/trie.so
@ -841,8 +863,6 @@ lib/python${MODPY_VERSION}/site-packages/Bio/writers/SeqRecord/fasta.py
lib/python${MODPY_VERSION}/site-packages/Bio/writers/SeqRecord/fasta.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/writers/__init__.py
lib/python${MODPY_VERSION}/site-packages/Bio/writers/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/Bio/xkMeans.py
lib/python${MODPY_VERSION}/site-packages/Bio/xkMeans.pyc
lib/python${MODPY_VERSION}/site-packages/BioSQL/
lib/python${MODPY_VERSION}/site-packages/BioSQL/BioSeq.py
lib/python${MODPY_VERSION}/site-packages/BioSQL/BioSeq.pyc
@ -885,622 +905,35 @@ lib/python${MODPY_VERSION}/site-packages/Martel/optimize.py
lib/python${MODPY_VERSION}/site-packages/Martel/optimize.pyc
@comment lib/python${MODPY_VERSION}/site-packages/Martel/setup.py
@comment lib/python${MODPY_VERSION}/site-packages/Martel/setup.pyc
lib/python${MODPY_VERSION}/site-packages/biopython-1.41-py${MODPY_VERSION}.egg-info
lib/python${MODPY_VERSION}/site-packages/biopython-1.44-py${MODPY_VERSION}.egg-info
share/doc/py-biopython/
share/doc/py-biopython/CDD.txt
share/doc/py-biopython/Crystal.txt
share/doc/py-biopython/ECell.txt
share/doc/py-biopython/FilteredReader.txt
share/doc/py-biopython/Geo.txt
share/doc/py-biopython/IntelliGenetics.txt
share/doc/py-biopython/InterPro.txt
share/doc/py-biopython/NetCatch.txt
share/doc/py-biopython/References.txt
share/doc/py-biopython/SGMLExtractor.txt
share/doc/py-biopython/Saf.txt
share/doc/py-biopython/Tutorial.txt
share/examples/py-biopython/
share/examples/py-biopython/Ace/
share/examples/py-biopython/Ace/contig1.ace
share/examples/py-biopython/Amino/
share/examples/py-biopython/Amino/aster.pro
share/examples/py-biopython/Amino/loveliesbleeding.pro
share/examples/py-biopython/Amino/rose.pro
share/examples/py-biopython/Amino/rosemary.pro
share/examples/py-biopython/BioSQL/
share/examples/py-biopython/BioSQL/biosqldb-mysql.sql
share/examples/py-biopython/BioSQL/biosqldb-pg.sql
share/examples/py-biopython/Blast/
share/examples/py-biopython/Blast/README
share/examples/py-biopython/Blast/bt001
share/examples/py-biopython/Blast/bt002
share/examples/py-biopython/Blast/bt003
share/examples/py-biopython/Blast/bt004
share/examples/py-biopython/Blast/bt005
share/examples/py-biopython/Blast/bt006
share/examples/py-biopython/Blast/bt007
share/examples/py-biopython/Blast/bt009
share/examples/py-biopython/Blast/bt010
share/examples/py-biopython/Blast/bt011
share/examples/py-biopython/Blast/bt012
share/examples/py-biopython/Blast/bt013
share/examples/py-biopython/Blast/bt014
share/examples/py-biopython/Blast/bt015
share/examples/py-biopython/Blast/bt016
share/examples/py-biopython/Blast/bt017
share/examples/py-biopython/Blast/bt018
share/examples/py-biopython/Blast/bt019
share/examples/py-biopython/Blast/bt020
share/examples/py-biopython/Blast/bt021
share/examples/py-biopython/Blast/bt022
share/examples/py-biopython/Blast/bt023
share/examples/py-biopython/Blast/bt024
share/examples/py-biopython/Blast/bt025
share/examples/py-biopython/Blast/bt026
share/examples/py-biopython/Blast/bt027
share/examples/py-biopython/Blast/bt028
share/examples/py-biopython/Blast/bt029
share/examples/py-biopython/Blast/bt030
share/examples/py-biopython/Blast/bt031
share/examples/py-biopython/Blast/bt032
share/examples/py-biopython/Blast/bt033
share/examples/py-biopython/Blast/bt034
share/examples/py-biopython/Blast/bt035
share/examples/py-biopython/Blast/bt036
share/examples/py-biopython/Blast/bt037
share/examples/py-biopython/Blast/bt038
share/examples/py-biopython/Blast/bt039
share/examples/py-biopython/Blast/bt040
share/examples/py-biopython/Blast/bt041
share/examples/py-biopython/Blast/bt042
share/examples/py-biopython/Blast/bt043
share/examples/py-biopython/Blast/bt044
share/examples/py-biopython/Blast/bt045
share/examples/py-biopython/Blast/bt046
share/examples/py-biopython/Blast/bt047
share/examples/py-biopython/Blast/bt048
share/examples/py-biopython/Blast/bt049
share/examples/py-biopython/Blast/bt050
share/examples/py-biopython/Blast/bt051
share/examples/py-biopython/Blast/bt052
share/examples/py-biopython/Blast/bt053
share/examples/py-biopython/Blast/bt054
share/examples/py-biopython/Blast/bt055
share/examples/py-biopython/Blast/bt056
share/examples/py-biopython/Blast/bt057
share/examples/py-biopython/Blast/bt058
share/examples/py-biopython/Blast/bt059
share/examples/py-biopython/Blast/bt060
share/examples/py-biopython/Blast/bt061
share/examples/py-biopython/Blast/bt062
share/examples/py-biopython/Blast/bt063
share/examples/py-biopython/Blast/bt064
share/examples/py-biopython/Blast/bt065
share/examples/py-biopython/Blast/bt066
share/examples/py-biopython/Blast/bt067
share/examples/py-biopython/Blast/bt068
share/examples/py-biopython/Blast/bt069
share/examples/py-biopython/Blast/bt070
share/examples/py-biopython/Blast/bt071
share/examples/py-biopython/Blast/bt100
share/examples/py-biopython/Blast/bt101
share/examples/py-biopython/Blast/xbt001.xml
share/examples/py-biopython/Blast/xbt002.xml
share/examples/py-biopython/Blast/xbt003.xml
share/examples/py-biopython/Blast/xbt004.xml
share/examples/py-biopython/Blast/xbt005.xml
share/examples/py-biopython/CDD/
share/examples/py-biopython/CDD/pfam00035.htm
share/examples/py-biopython/CDD/pfam01356.htm
share/examples/py-biopython/CDD/pfam02903.htm
share/examples/py-biopython/CDD/smart00499.htm
share/examples/py-biopython/CDD/smart00505.htm
share/examples/py-biopython/Clustalw/
share/examples/py-biopython/Clustalw/cw02.aln
share/examples/py-biopython/Clustalw/opuntia.aln
share/examples/py-biopython/CodonUsage/
share/examples/py-biopython/CodonUsage/.DS_Store
share/examples/py-biopython/CodonUsage/HighlyExpressedGenes.txt
share/examples/py-biopython/Compass/
share/examples/py-biopython/Compass/comtest1
share/examples/py-biopython/Compass/comtest2
share/examples/py-biopython/ECell/
share/examples/py-biopython/ECell/sample.txt
share/examples/py-biopython/Emboss/
share/examples/py-biopython/Emboss/bac_find.primer3
share/examples/py-biopython/Emboss/bac_find.psearch
share/examples/py-biopython/Emboss/cds_forward.primer3
share/examples/py-biopython/Emboss/cds_reverse.primer3
share/examples/py-biopython/Emboss/short.primer3
share/examples/py-biopython/Enzymes/
share/examples/py-biopython/Enzymes/lactate.txt
share/examples/py-biopython/Enzymes/lipoprotein.txt
share/examples/py-biopython/Enzymes/proline.txt
share/examples/py-biopython/Enzymes/valine.txt
share/examples/py-biopython/FSSP/
share/examples/py-biopython/FSSP/1cnv.fssp
share/examples/py-biopython/Fasta/
share/examples/py-biopython/Fasta/README
share/examples/py-biopython/Fasta/f001
share/examples/py-biopython/Fasta/f002
share/examples/py-biopython/Fasta/f003
share/examples/py-biopython/Fasta/fa01
share/examples/py-biopython/GFF/
share/examples/py-biopython/GFF/NC_001422.gbk
share/examples/py-biopython/GFF/NC_001802.fna
share/examples/py-biopython/GFF/NC_001802lc.fna
share/examples/py-biopython/GFF/NC_001802x.fna
share/examples/py-biopython/GFF/multi.fna
share/examples/py-biopython/GenBank/
share/examples/py-biopython/GenBank/NT_019265.gb
share/examples/py-biopython/GenBank/arab1.gb
share/examples/py-biopython/GenBank/blank_seq.gb
share/examples/py-biopython/GenBank/cor6_6.gb
share/examples/py-biopython/GenBank/dbsource_wrap.gb
share/examples/py-biopython/GenBank/extra_keywords.gb
share/examples/py-biopython/GenBank/iro.gb
share/examples/py-biopython/GenBank/noref.gb
share/examples/py-biopython/GenBank/one_of.gb
share/examples/py-biopython/GenBank/origin_line.gb
share/examples/py-biopython/GenBank/pri1.gb
share/examples/py-biopython/GenBank/protein_refseq.gb
share/examples/py-biopython/Geo/
share/examples/py-biopython/Geo/GSE16.txt
share/examples/py-biopython/Geo/GSM645.txt
share/examples/py-biopython/Geo/GSM691.txt
share/examples/py-biopython/Geo/GSM700.txt
share/examples/py-biopython/Geo/GSM804.txt
share/examples/py-biopython/Gobase/
share/examples/py-biopython/Gobase/E15449.htm
share/examples/py-biopython/Gobase/E15449.txt
share/examples/py-biopython/Gobase/G405967.htm
share/examples/py-biopython/Gobase/G405967.txt
share/examples/py-biopython/Gobase/G423945.htm
share/examples/py-biopython/Gobase/G423945.txt
share/examples/py-biopython/Gobase/P2661406.htm
share/examples/py-biopython/Gobase/P2661406.txt
share/examples/py-biopython/Gobase/P6513764.htm
share/examples/py-biopython/Gobase/Pt6513764.txt
share/examples/py-biopython/Gobase/S4323016.htm
share/examples/py-biopython/Gobase/S4323016.txt
share/examples/py-biopython/Graphics/
share/examples/py-biopython/Graphics/README
share/examples/py-biopython/IntelliGenetics/
share/examples/py-biopython/IntelliGenetics/TAT_mase-nuc.txt
share/examples/py-biopython/IntelliGenetics/TAT_mase_nuc.txt
share/examples/py-biopython/IntelliGenetics/VIF_mase-pro.txt
share/examples/py-biopython/IntelliGenetics/vpu_nucaligned.txt
share/examples/py-biopython/InterPro/
share/examples/py-biopython/InterPro/IPR001064.htm
share/examples/py-biopython/InterPro/IPR001171.htm
share/examples/py-biopython/InterPro/IPR001391.htm
share/examples/py-biopython/InterPro/IPR001442.htm
share/examples/py-biopython/InterPro/IPR001571.htm
share/examples/py-biopython/KEGG/
share/examples/py-biopython/KEGG/compound.irregular
share/examples/py-biopython/KEGG/compound.sample
share/examples/py-biopython/KEGG/enzyme.irregular
share/examples/py-biopython/KEGG/enzyme.sample
share/examples/py-biopython/KEGG/map00950.rea
share/examples/py-biopython/Kabat/
share/examples/py-biopython/Kabat/k000245.txt
share/examples/py-biopython/Kabat/k000255.txt
share/examples/py-biopython/Kabat/k000347.txt
share/examples/py-biopython/Kabat/k000397.txt
share/examples/py-biopython/Kabat/k000456.txt
share/examples/py-biopython/LocusLink/
share/examples/py-biopython/LocusLink/LL_block
share/examples/py-biopython/LocusLink/Locus14789.htm
share/examples/py-biopython/LocusLink/Locus16590.htm
share/examples/py-biopython/LocusLink/Locus2523.htm
share/examples/py-biopython/LocusLink/Locus5797.htm
share/examples/py-biopython/LocusLink/Locus6373.htm
share/examples/py-biopython/MEME/
share/examples/py-biopython/MEME/mast.dna.oops.txt
share/examples/py-biopython/MEME/mast.protein.oops.txt
share/examples/py-biopython/MEME/mast.protein.tcm.txt
share/examples/py-biopython/MEME/meme.dna.oops.txt
share/examples/py-biopython/MEME/meme.protein.oops.txt
share/examples/py-biopython/MEME/meme.protein.tcm.txt
share/examples/py-biopython/MetaTool/
share/examples/py-biopython/MetaTool/Example3.txt
share/examples/py-biopython/MetaTool/Example4.txt
share/examples/py-biopython/MetaTool/Example6.txt
share/examples/py-biopython/MetaTool/Example7.txt
share/examples/py-biopython/MetaTool/Example8.txt
share/examples/py-biopython/MetaTool/Example9.txt
share/examples/py-biopython/MetaTool/Meta10.out
share/examples/py-biopython/MetaTool/Meta12.out
share/examples/py-biopython/MetaTool/Meta13.out
share/examples/py-biopython/MetaTool/Meta14.out
share/examples/py-biopython/MetaTool/Meta15.out
share/examples/py-biopython/MetaTool/Meta3.out
share/examples/py-biopython/MetaTool/Meta4.out
share/examples/py-biopython/MetaTool/Meta6.out
share/examples/py-biopython/MetaTool/Meta7.out
share/examples/py-biopython/MetaTool/Meta8.out
share/examples/py-biopython/MetaTool/example11.txt
share/examples/py-biopython/MetaTool/example12.txt
share/examples/py-biopython/MetaTool/example13.txt
share/examples/py-biopython/MetaTool/example14.txt
share/examples/py-biopython/MetaTool/example15.txt
share/examples/py-biopython/MetaTool/example2.txt
share/examples/py-biopython/MetaTool/meta.out
share/examples/py-biopython/MetaTool/meta2.out
share/examples/py-biopython/MetaTool/meta9.out
share/examples/py-biopython/NBRF/
share/examples/py-biopython/NBRF/B_nuc.pir
share/examples/py-biopython/NBRF/Cw_prot.pir
share/examples/py-biopython/NBRF/DMA_nuc.pir
share/examples/py-biopython/NBRF/DMB_prot.pir
share/examples/py-biopython/NBRF/clustalw.pir
share/examples/py-biopython/Ndb/
share/examples/py-biopython/Ndb/AH0014.htm
share/examples/py-biopython/Ndb/PD0072.htm
share/examples/py-biopython/Ndb/PD0080.htm
share/examples/py-biopython/Ndb/PD0082.htm
share/examples/py-biopython/Ndb/PR0002.htm
share/examples/py-biopython/Ndb/PR0004.htm
share/examples/py-biopython/Ndb/PR0007.htm
share/examples/py-biopython/Ndb/TRNA05.htm
share/examples/py-biopython/Ndb/URX035.htm
share/examples/py-biopython/Ndb/ZHF026.htm
share/examples/py-biopython/NeuralNetwork/
share/examples/py-biopython/NeuralNetwork/enolase.fasta
share/examples/py-biopython/NeuralNetwork/repeat.fasta
share/examples/py-biopython/Nexus/
share/examples/py-biopython/Nexus/f1.nex
share/examples/py-biopython/Nexus/f2.nex
share/examples/py-biopython/Nexus/test_Nexus_input.nex
share/examples/py-biopython/Nucleic/
share/examples/py-biopython/Nucleic/centaurea.nu
share/examples/py-biopython/Nucleic/elderberry.nu
share/examples/py-biopython/Nucleic/lavender.nu
share/examples/py-biopython/Nucleic/lupine.nu
share/examples/py-biopython/Nucleic/phlox.nu
share/examples/py-biopython/Nucleic/sweetpea.nu
share/examples/py-biopython/Nucleic/wisteria.nu
share/examples/py-biopython/PDB/
share/examples/py-biopython/PDB/a_structure.pdb
share/examples/py-biopython/Phd/
share/examples/py-biopython/Phd/phd1
share/examples/py-biopython/Prosite/
share/examples/py-biopython/Prosite/Doc/
share/examples/py-biopython/Prosite/Doc/pdoc00100.htm
share/examples/py-biopython/Prosite/Doc/pdoc00100.txt
share/examples/py-biopython/Prosite/Doc/pdoc00113.htm
share/examples/py-biopython/Prosite/Doc/pdoc00113.txt
share/examples/py-biopython/Prosite/Doc/pdoc00144.htm
share/examples/py-biopython/Prosite/Doc/pdoc00144.txt
share/examples/py-biopython/Prosite/Doc/pdoc00149.htm
share/examples/py-biopython/Prosite/Doc/pdoc00149.txt
share/examples/py-biopython/Prosite/Doc/pdoc00340.htm
share/examples/py-biopython/Prosite/Doc/pdoc00340.txt
share/examples/py-biopython/Prosite/Doc/pdoc00424.htm
share/examples/py-biopython/Prosite/Doc/pdoc00424.txt
share/examples/py-biopython/Prosite/Doc/pdoc00472.htm
share/examples/py-biopython/Prosite/Doc/pdoc00472.txt
share/examples/py-biopython/Prosite/Doc/pdoc00640.htm
share/examples/py-biopython/Prosite/Doc/pdoc00640.txt
share/examples/py-biopython/Prosite/Doc/pdoc00787.htm
share/examples/py-biopython/Prosite/Doc/pdoc00787.txt
share/examples/py-biopython/Prosite/Doc/pdoc00933.htm
share/examples/py-biopython/Prosite/Doc/pdoc00933.txt
share/examples/py-biopython/Prosite/README
share/examples/py-biopython/Prosite/ps001
share/examples/py-biopython/Prosite/ps00107.htm
share/examples/py-biopython/Prosite/ps00107.txt
share/examples/py-biopython/Prosite/ps00123.htm
share/examples/py-biopython/Prosite/ps00123.txt
share/examples/py-biopython/Prosite/ps00159.htm
share/examples/py-biopython/Prosite/ps00159.txt
share/examples/py-biopython/Prosite/ps00165.htm
share/examples/py-biopython/Prosite/ps00165.txt
share/examples/py-biopython/Prosite/ps002
share/examples/py-biopython/Prosite/ps00213.html
share/examples/py-biopython/Prosite/ps00213.txt
share/examples/py-biopython/Prosite/ps003
share/examples/py-biopython/Prosite/ps00432.htm
share/examples/py-biopython/Prosite/ps00432.txt
share/examples/py-biopython/Prosite/ps00488.txt
share/examples/py-biopython/Prosite/ps00546.txt
share/examples/py-biopython/Prosite/ps00812.txt
share/examples/py-biopython/Prosite/ps01213.txt
share/examples/py-biopython/Rebase/
share/examples/py-biopython/Rebase/bamii.htm
share/examples/py-biopython/Rebase/bamii.txt
share/examples/py-biopython/Rebase/cac81.htm
share/examples/py-biopython/Rebase/cac81.txt
share/examples/py-biopython/Rebase/crei.htm
share/examples/py-biopython/Rebase/crei.txt
share/examples/py-biopython/Rebase/foki.htm
share/examples/py-biopython/Rebase/foki.txt
share/examples/py-biopython/Rebase/pvuii.htm
share/examples/py-biopython/Rebase/pvuii.txt
share/examples/py-biopython/Rebase/taqi.htm
share/examples/py-biopython/Rebase/taqi.txt
share/examples/py-biopython/Registry/
share/examples/py-biopython/Registry/EDD_RAT.dat
share/examples/py-biopython/Registry/bt001
share/examples/py-biopython/Registry/seqs.fasta
share/examples/py-biopython/SCOP/
share/examples/py-biopython/SCOP/dir.cla.scop.txt_test
share/examples/py-biopython/SCOP/dir.des.scop.txt_test
share/examples/py-biopython/SCOP/dir.hie.scop.txt_test
share/examples/py-biopython/SCOP/dirtest.txt
share/examples/py-biopython/SCOP/raftest.txt
share/examples/py-biopython/SCOP/scopseq-test/
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-all-test.fa
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-10-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-100-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-20-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-25-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-30-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-35-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-40-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-50-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-70-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-90-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-bib-95-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e+0,7-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e+0-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e+1-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-0,3-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-1,3-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-1-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-10-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-15-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-2,3-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-2-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-20-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-25-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-3-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-4-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-5-test.id
share/examples/py-biopython/SCOP/scopseq-test/astral-scopdom-seqres-sel-gs-e100m-e-50-test.id
share/examples/py-biopython/SCOP/testDom.txt
share/examples/py-biopython/Saf/
share/examples/py-biopython/Saf/saf1.txt
share/examples/py-biopython/SubsMat/
share/examples/py-biopython/SubsMat/aaDistrib.txt
share/examples/py-biopython/SubsMat/acc_rep_mat.pik
share/examples/py-biopython/SubsMat/protein_count.txt
share/examples/py-biopython/SubsMat/protein_freq.txt
share/examples/py-biopython/SubsMat/redAADistrib.txt
share/examples/py-biopython/SubsMat/redAltAADistrib.txt
share/examples/py-biopython/SwissProt/
share/examples/py-biopython/SwissProt/README
share/examples/py-biopython/SwissProt/kw001
share/examples/py-biopython/SwissProt/kw002
share/examples/py-biopython/SwissProt/sp001
share/examples/py-biopython/SwissProt/sp002
share/examples/py-biopython/SwissProt/sp003
share/examples/py-biopython/SwissProt/sp004
share/examples/py-biopython/SwissProt/sp005
share/examples/py-biopython/SwissProt/sp006
share/examples/py-biopython/SwissProt/sp007
share/examples/py-biopython/SwissProt/sp008
share/examples/py-biopython/SwissProt/sp009
share/examples/py-biopython/SwissProt/sp010
share/examples/py-biopython/SwissProt/sp011
share/examples/py-biopython/SwissProt/sp012
share/examples/py-biopython/SwissProt/sp013
share/examples/py-biopython/SwissProt/sp014
share/examples/py-biopython/SwissProt/sp015
share/examples/py-biopython/UniGene/
share/examples/py-biopython/UniGene/Bt145.htm
share/examples/py-biopython/UniGene/Bt59.htm
share/examples/py-biopython/UniGene/Dr00010.htm
share/examples/py-biopython/UniGene/Dr20.htm
share/examples/py-biopython/UniGene/Dr48.htm
share/examples/py-biopython/UniGene/Hs13225.htm
share/examples/py-biopython/UniGene/Hs227583.htm
share/examples/py-biopython/UniGene/Hs28199.htm
share/examples/py-biopython/UniGene/Mm28919.htm
share/examples/py-biopython/UniGene/Mm421.htm
share/examples/py-biopython/UniGene/Rn20.htm
share/examples/py-biopython/UniGene/Rn35.htm
share/examples/py-biopython/WIT/
share/examples/py-biopython/WIT/ec2137.htm
share/examples/py-biopython/WIT/ec2137.txt
share/examples/py-biopython/WIT/ec2214.htm
share/examples/py-biopython/WIT/ec2214.txt
share/examples/py-biopython/WIT/ec2426.htm
share/examples/py-biopython/WIT/ec2426.txt
share/examples/py-biopython/WIT/ec2721.htm
share/examples/py-biopython/WIT/ec2721.txt
share/examples/py-biopython/WIT/ec3224.htm
share/examples/py-biopython/WIT/ec3224.txt
share/examples/py-biopython/WIT/ec3311.htm
share/examples/py-biopython/WIT/ec3311.txt
share/examples/py-biopython/WIT/ec3325.htm
share/examples/py-biopython/WIT/ec3325.txt
share/examples/py-biopython/WIT/ec3544.htm
share/examples/py-biopython/WIT/ec3544.txt
share/examples/py-biopython/WIT/ec4416.htm
share/examples/py-biopython/WIT/ec4416.txt
share/examples/py-biopython/WIT/ec6344.htm
share/examples/py-biopython/WIT/ec6344.txt
share/examples/py-biopython/Wise/
share/examples/py-biopython/Wise/human_114_g01_exons.fna_01
share/examples/py-biopython/Wise/human_114_g02_exons.fna_01
share/examples/py-biopython/martel_support.py
share/examples/py-biopython/output/
share/examples/py-biopython/output/test_Ace
share/examples/py-biopython/output/test_BioSQL
share/examples/py-biopython/output/test_CAPS
share/examples/py-biopython/output/test_Cluster
share/examples/py-biopython/output/test_CodonUsage
share/examples/py-biopython/output/test_Compass
share/examples/py-biopython/output/test_Crystal
share/examples/py-biopython/output/test_DocSQL
share/examples/py-biopython/output/test_EUtils
share/examples/py-biopython/output/test_EmbossPrimer
share/examples/py-biopython/output/test_Enzyme
share/examples/py-biopython/output/test_FSSP
share/examples/py-biopython/output/test_Fasta
share/examples/py-biopython/output/test_Fasta2
share/examples/py-biopython/output/test_File
share/examples/py-biopython/output/test_GACrossover
share/examples/py-biopython/output/test_GAMutation
share/examples/py-biopython/output/test_GAOrganism
share/examples/py-biopython/output/test_GAQueens
share/examples/py-biopython/output/test_GARepair
share/examples/py-biopython/output/test_GASelection
share/examples/py-biopython/output/test_GFF
share/examples/py-biopython/output/test_GenBank
share/examples/py-biopython/output/test_GenBankFormat
share/examples/py-biopython/output/test_GraphicsChromosome
share/examples/py-biopython/output/test_GraphicsDistribution
share/examples/py-biopython/output/test_GraphicsGeneral
share/examples/py-biopython/output/test_HMMCasino
share/examples/py-biopython/output/test_HMMGeneral
share/examples/py-biopython/output/test_HotRand
share/examples/py-biopython/output/test_IsoelectricPoint
share/examples/py-biopython/output/test_KDTree
share/examples/py-biopython/output/test_KEGG
share/examples/py-biopython/output/test_KeyWList
share/examples/py-biopython/output/test_Location
share/examples/py-biopython/output/test_LocationParser
share/examples/py-biopython/output/test_MEME
share/examples/py-biopython/output/test_MarkovModel
share/examples/py-biopython/output/test_NCBIStandalone
share/examples/py-biopython/output/test_NCBIWWW
share/examples/py-biopython/output/test_NCBIXML
share/examples/py-biopython/output/test_NNExclusiveOr
share/examples/py-biopython/output/test_NNGene
share/examples/py-biopython/output/test_NNGeneral
share/examples/py-biopython/output/test_Nexus
share/examples/py-biopython/output/test_PDB
share/examples/py-biopython/output/test_ParserSupport
share/examples/py-biopython/output/test_Pathway
share/examples/py-biopython/output/test_Phd
share/examples/py-biopython/output/test_ProtParam
share/examples/py-biopython/output/test_Registry
share/examples/py-biopython/output/test_Restriction
share/examples/py-biopython/output/test_SCOP_Astral
share/examples/py-biopython/output/test_SCOP_Cla
share/examples/py-biopython/output/test_SCOP_Des
share/examples/py-biopython/output/test_SCOP_Dom
share/examples/py-biopython/output/test_SCOP_Hie
share/examples/py-biopython/output/test_SCOP_Raf
share/examples/py-biopython/output/test_SCOP_Residues
share/examples/py-biopython/output/test_SCOP_Scop
share/examples/py-biopython/output/test_SProt
share/examples/py-biopython/output/test_SVDSuperimposer
share/examples/py-biopython/output/test_SubsMat
share/examples/py-biopython/output/test_Wise
share/examples/py-biopython/output/test_ais
share/examples/py-biopython/output/test_align
share/examples/py-biopython/output/test_cdd
share/examples/py-biopython/output/test_copen
share/examples/py-biopython/output/test_ecell
share/examples/py-biopython/output/test_format_registry
share/examples/py-biopython/output/test_geo
share/examples/py-biopython/output/test_gobase
share/examples/py-biopython/output/test_intelligenetics
share/examples/py-biopython/output/test_interpro
share/examples/py-biopython/output/test_kabat
share/examples/py-biopython/output/test_locus_http
share/examples/py-biopython/output/test_locuslink
share/examples/py-biopython/output/test_metatool
share/examples/py-biopython/output/test_nbrf
share/examples/py-biopython/output/test_ndb
share/examples/py-biopython/output/test_pairwise2
share/examples/py-biopython/output/test_prodoc
share/examples/py-biopython/output/test_property_manager
share/examples/py-biopython/output/test_prosite
share/examples/py-biopython/output/test_prosite2
share/examples/py-biopython/output/test_psw
share/examples/py-biopython/output/test_rebase
share/examples/py-biopython/output/test_saf
share/examples/py-biopython/output/test_seq
share/examples/py-biopython/output/test_translate
share/examples/py-biopython/output/test_trie
share/examples/py-biopython/output/test_triefind
share/examples/py-biopython/output/test_unigene
share/examples/py-biopython/requires_internet.py
share/examples/py-biopython/requires_wise.py
share/examples/py-biopython/run_tests.py
@comment share/examples/py-biopython/run_tests.py.orig
share/examples/py-biopython/test_Ace.py
share/examples/py-biopython/test_BioSQL.py
share/examples/py-biopython/test_CAPS.py
share/examples/py-biopython/test_Cluster.py
share/examples/py-biopython/test_CodonUsage.py
share/examples/py-biopython/test_Compass.py
share/examples/py-biopython/test_Crystal.py
share/examples/py-biopython/test_DocSQL.py
share/examples/py-biopython/test_EUtils.py
share/examples/py-biopython/test_EmbossPrimer.py
share/examples/py-biopython/test_Enzyme.py
share/examples/py-biopython/test_FSSP.py
share/examples/py-biopython/test_Fasta.py
share/examples/py-biopython/test_Fasta2.py
share/examples/py-biopython/test_File.py
share/examples/py-biopython/test_GACrossover.py
share/examples/py-biopython/test_GAMutation.py
share/examples/py-biopython/test_GAOrganism.py
share/examples/py-biopython/test_GAQueens.py
share/examples/py-biopython/test_GARepair.py
share/examples/py-biopython/test_GASelection.py
share/examples/py-biopython/test_GFF.py
share/examples/py-biopython/test_GenBank.py
share/examples/py-biopython/test_GenBankFormat.py
share/examples/py-biopython/test_GraphicsChromosome.py
share/examples/py-biopython/test_GraphicsDistribution.py
share/examples/py-biopython/test_GraphicsGeneral.py
share/examples/py-biopython/test_HMMCasino.py
share/examples/py-biopython/test_HMMGeneral.py
share/examples/py-biopython/test_HotRand.py
share/examples/py-biopython/test_IsoelectricPoint.py
share/examples/py-biopython/test_KDTree.py
share/examples/py-biopython/test_KEGG.py
share/examples/py-biopython/test_KeyWList.py
share/examples/py-biopython/test_Location.py
share/examples/py-biopython/test_LocationParser.py
share/examples/py-biopython/test_MEME.py
share/examples/py-biopython/test_MarkovModel.py
share/examples/py-biopython/test_NCBIStandalone.py
share/examples/py-biopython/test_NCBIWWW.py
share/examples/py-biopython/test_NCBIXML.py
share/examples/py-biopython/test_NNExclusiveOr.py
share/examples/py-biopython/test_NNGene.py
share/examples/py-biopython/test_NNGeneral.py
share/examples/py-biopython/test_Nexus.py
share/examples/py-biopython/test_PDB.py
share/examples/py-biopython/test_ParserSupport.py
share/examples/py-biopython/test_Pathway.py
share/examples/py-biopython/test_Phd.py
share/examples/py-biopython/test_ProtParam.py
share/examples/py-biopython/test_Registry.py
share/examples/py-biopython/test_Restriction.py
share/examples/py-biopython/test_SCOP_Astral.py
share/examples/py-biopython/test_SCOP_Cla.py
share/examples/py-biopython/test_SCOP_Des.py
share/examples/py-biopython/test_SCOP_Dom.py
share/examples/py-biopython/test_SCOP_Hie.py
share/examples/py-biopython/test_SCOP_Raf.py
share/examples/py-biopython/test_SCOP_Residues.py
share/examples/py-biopython/test_SCOP_Scop.py
share/examples/py-biopython/test_SProt.py
share/examples/py-biopython/test_SVDSuperimposer.py
share/examples/py-biopython/test_SubsMat.py
share/examples/py-biopython/test_Wise.py
share/examples/py-biopython/test_ais.py
share/examples/py-biopython/test_align.py
share/examples/py-biopython/test_cdd.py
share/examples/py-biopython/test_copen.py
share/examples/py-biopython/test_ecell.py
share/examples/py-biopython/test_format_registry.py
share/examples/py-biopython/test_geo.py
share/examples/py-biopython/test_gobase.py
share/examples/py-biopython/test_intelligenetics.py
share/examples/py-biopython/test_interpro.py
share/examples/py-biopython/test_kabat.py
share/examples/py-biopython/test_locus_http.py
share/examples/py-biopython/test_locuslink.py
share/examples/py-biopython/test_metatool.py
share/examples/py-biopython/test_nbrf.py
share/examples/py-biopython/test_ndb.py
share/examples/py-biopython/test_pairwise2.py
share/examples/py-biopython/test_prodoc.py
share/examples/py-biopython/test_property_manager.py
share/examples/py-biopython/test_prosite.py
share/examples/py-biopython/test_prosite2.py
share/examples/py-biopython/test_psw.py
share/examples/py-biopython/test_rebase.py
share/examples/py-biopython/test_saf.py
share/examples/py-biopython/test_seq.py
share/examples/py-biopython/test_translate.py
share/examples/py-biopython/test_trie.py
share/examples/py-biopython/test_triefind.py
share/examples/py-biopython/test_unigene.py
share/examples/py-biopython/unittestgui.py
share/examples/py-biopython/clustal_run.py
share/examples/py-biopython/fasta_dictionary.py
share/examples/py-biopython/fasta_iterator.py
share/examples/py-biopython/getgene.py
share/examples/py-biopython/local_blast.py
share/examples/py-biopython/ls_orchid.fasta
share/examples/py-biopython/m_cold.fasta
share/examples/py-biopython/make_subsmat.py
share/examples/py-biopython/nmr/
share/examples/py-biopython/nmr/noed.xpk
share/examples/py-biopython/nmr/simplepredict.py
share/examples/py-biopython/opuntia.fasta
share/examples/py-biopython/protein.aln
share/examples/py-biopython/pubmed_search.py
share/examples/py-biopython/query_entrez.py
share/examples/py-biopython/swissprot.py
share/examples/py-biopython/www_blast.py