Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id DE1241A9239 for ; Thu, 17 Feb 2022 10:44:53 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2EBCD84EAA; Thu, 17 Feb 2022 10:44:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 66A6684E78 for ; Thu, 17 Feb 2022 10:44:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id OeSEOBlK6S77 for ; Thu, 17 Feb 2022 10:44:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E411884CE3 for ; Thu, 17 Feb 2022 10:44:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D4C1BFB24; Thu, 17 Feb 2022 10:44:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1645094689277780" MIME-Version: 1.0 Date: Thu, 17 Feb 2022 10:44:49 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/biology/py-biopython To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220217104449.D4C1BFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1645094689277780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Thu Feb 17 10:44:49 UTC 2022 Modified Files: pkgsrc/biology/py-biopython: Makefile PLIST distinfo Log Message: py-biopython: update to 1.79. 1 June 2021: Biopython 1.79 ================================ This is intended to be our final release supporting Python 3.6. It also supports Python 3.7, 3.8 and 3.9, and has also been tested on PyPy3.6.1 v7.1.1. The ``Seq`` and ``MutableSeq`` classes in ``Bio.Seq`` now store their sequence contents as ``bytes` ` and ``bytearray`` objects, respectively. Previously, for ``Seq`` objects a string object was used, and a Unicode array object for ``MutableSeq`` objects. This was maintained during the transition from Python2 to Python3. However, a Python2 string object corresponds to a ``bytes`` object in Python3, storing the string as a series of 256-bit characters. While non- ASCII characters could be stored in Python2 strings, they were not treated as such. For example: In Python2:: >>> s = "Генетика" >>> type(s) >>> len(s) 16 In Python3:: >>> s = "Генетика" >>> type(s) >>> len(s) 8 In Python3, storing the sequence contents as ``bytes`` and ``bytearray`` objects has the further advantage that both support the buffer protocol. Taking advantage of the similarity between ``bytes`` and ``bytearray``, the ``Seq`` and ``MutableSeq`` classes now inherit from an abstract base class ``_SeqAbstractBaseClass`` in ``Bio.Seq`` that implements most of the ``Seq`` and ``MutableSeq`` methods, ensuring their consistency with each other. For methods that modify the sequence contents, an optional ``inplace`` argument to specify if a new sequence object should be returned with the new sequence contents (if ``inplace`` is ``False``, the default) or if the sequence object itself should be modified (if ``inplace`` is ``True``). For ``Seq`` objects, which are immutable, using ``inplace=True`` raises an exception. For ``inplace=False``, the default, ``Seq`` objects and ``MutableSeq`` behave consistently. As before, ``Seq`` and ``MutableSeq`` objects can be initialized using a string object, which will be converted to a ``bytes`` or ``bytearray`` object assuming an ASCII encoding. Alternatively, a ``bytes`` or ``bytearray`` object can be used, or an instance of any class inheriting from the new ``SequenceDataAbstractBaseClass`` abstract base class in ``Bio.Seq``. This requires that the class implements the ``__len__`` and ``__getitem`` methods that return the sequence length and sequence contents on demand. Initialzing a ``Seq`` instance using an instance of a class inheriting from ``SequenceDataAbstractBaseClass`` allows the ``Seq`` object to be lazy, meaning that its sequence is provided on demand only, without requiring to initialize the full sequence. This feature is now used in ``BioSQL``, providing on-demand sequence loading from an SQL database, as well as in a new parser for twoBit (.2bit) sequence data added to ``Bio.SeqIO``. This is a lazy parser that allows fast access to genome-size DNA sequence files by not having to read the full genome sequence. The new ``_UndefinedSequenceData`` class in ``Bio.Seq`` also inherits from ``SequenceDataAbstractBaseClass`` to represent sequences of known length but unknown sequence contents. This provides an alternative to ``UnknownSeq``, which is now deprecated as its definition was ambiguous. For example, in these examples the ``UnknownSeq`` is interpreted as a sequence with a well-defined sequence contents:: >>> s = UnknownSeq(3, character="A") >>> s.translate() UnknownSeq(1, character='K') >>> s + "A" Seq("AAAA") A sequence object with an undefined sequence contents can now be created by using ``None`` when creating the ``Seq`` object, together with the sequence length. Trying to access its sequence contents raises an ``UndefinedSequenceError``:: >>> s = Seq(None, length=6) >>> s Seq(None, length=6) >>> len(s) 6 >>> "A" in s Traceback (most recent call last): ... Bio.Seq.UndefinedSequenceError: Sequence content is undefined >>> print(s) Traceback (most recent call last): .... Bio.Seq.UndefinedSequenceError: Sequence content is undefined Element assignment in Bio.PDB.Atom now returns "X" when the element cannot be unambiguously guessed from the atom name, in accordance with PDB structures. Bio.PDB entities now have a ``center_of_mass()`` method that calculates either centers of gravity or geometry. New method ``disordered_remove()`` implemented in Bio.PDB DisorderedAtom and DisorderedResidue to remove children. New module Bio.PDB.SASA implements the Shrake-Rupley algorithm to calculate atomic solvent accessible areas without third-party tools. Expected ``TypeError`` behaviour has been restored to the ``Seq`` object's string like methods (fixing a regression in Biopython 1.78). The KEGG ``KGML_Pathway`` KGML output was fixed to produce output that complies with KGML v0.7.2. Parsing motifs in ``pfm-four-rows`` format can now handle motifs with values in scientific notation. Parsing motifs in ``minimal``` MEME format will use ``nsites`` when making the count matrix from the frequency matrix, instead of multiply the frequency matrix by 1000000. Bio.UniProt.GOA now parses Gene Product Information (GPI) files version 1.2, files can be downloaded from the EBI ftp site: ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/ 4 September 2020: Biopython 1.78 ================================ This release of Biopython supports Python 3.6, 3.7 and 3.8. It has also been tested on PyPy3.6.1 v7.1.1. The main change is that ``Bio.Alphabet`` is no longer used. In some cases you will now have to specify expected letters, molecule type (DNA, RNA, protein), or gap character explicitly. Please consult the updated Tutorial and API documentation for guidance. This simplification has sped up many ``Seq`` object methods. See https://biopython.org/wiki/Alphabet for more information. ``Bio.SeqIO.parse()`` is faster with "fastq" format due to small improvements in the ``Bio.SeqIO.QualityIO`` module. The ``SeqFeature`` object's ``.extract()`` method can now be used for trans-spliced locations via an optional dictionary of references. As in recent releases, more of our code is now explicitly available under either our original "Biopython License Agreement", or the very similar but more commonly used "3-Clause BSD License". See the ``LICENSE.rst`` file for more details. Additionally, a number of small bugs and typos have been fixed with additions to the test suite. There has been further work to follow the Python PEP8, PEP257 and best practice standard coding style, and all of the tests have been reformatted with the ``black`` tool to match the main code base. 25 May 2020: Biopython 1.77 =========================== This release of Biopython supports Python 3.6, 3.7 and 3.8 It has also been tested on PyPy3.6.1 v7.1.1-beta0. **We have dropped support for Python 2 now.** ``pairwise2`` now allows the input of parameters with keywords and returns the alignments as a list of ``namedtuples``. The codon tables have been updated to NCBI genetic code table version 4.5, which adds Cephalodiscidae mitochondrial as table 33. Updated ``Bio.Restriction`` to the January 2020 release of REBASE. A major contribution by Rob Miller to ``Bio.PDB`` provides new methods to handle protein structure transformations using dihedral angles (internal coordinates). The new framework supports lossless interconversion between internal and cartesian coordinates, which, among other uses, simplifies the analysis and manipulation of coordinates of proteins structures. As in recent releases, more of our code is now explicitly available under either our original "Biopython License Agreement", or the very similar but more commonly used "3-Clause BSD License". See the ``LICENSE.rst`` file for more details. Additionally, a number of small bugs and typos have been fixed with further additions to the test suite. There has been further work to follow the Python PEP8, PEP257 and best practice standard coding style, and all the main code base has been reformatted with the ``black`` tool. 20 December 2019: Biopython 1.76 ================================ This release of Biopython supports Python 2.7, 3.5, 3.6, 3.7 and 3.8. It has also been tested on PyPy2.7.13 v7.1.1 and PyPy3.6.1 v7.1.1-beta0. We intend this to be our final release supporting Python 2.7 and 3.5. As in recent releases, more of our code is now explicitly available under either our original "Biopython License Agreement", or the very similar but more commonly used "3-Clause BSD License". See the ``LICENSE.rst`` file for more details. ``PDBParser`` and ``PDBIO`` now support PQR format file parsing and input/ output. In addition to the mainstream ``x86_64`` aka ``AMD64`` CPU architecture, we now also test every contribution on the ``ARM64``, ``ppc64le``, and ``s390x`` CPUs under Linux thanks to Travis CI. Further post-release testing done by Debian and other packagers and distributors of Biopython also covers these CPUs. ``Bio.motifs.PositionSpecificScoringMatrix.search()`` method has been re-written: it now applies ``.calculate()`` to chunks of the sequence to maintain a low memory footprint for long sequences. Additionally, a number of small bugs and typos have been fixed with further additions to the test suite. There has been further work to follow the Python PEP8, PEP257 and best practice standard coding style, and more of the code style has been reformatted with the ``black`` tool. 6 November 2019: Biopython 1.75 =============================== This release of Biopython supports Python 2.7, 3.5, 3.6, 3.7 and is expected to work on the soon to be released Python 3.8. It has also been tested on PyPy2.7.13 v7.1.1 and PyPy3.6.1 v7.1.1-beta0. Note we intend to drop Python 2.7 support in early 2020. The restriction enzyme list in ``Bio.Restriction`` has been updated to the August 2019 release of REBASE. ``Bio.SeqIO`` now supports reading and writing files in the native format of Christian Marck's DNA Strider program ("xdna" format, also used by Serial Cloner), as well as reading files in the native formats of GSL Biotech's SnapGene ("snapgene") and Textco Biosoftware's Gene Construction Kit ("gck"). ``Bio.AlignIO`` now supports GCG MSF multiple sequence alignments as the "msf" format (work funded by the National Marrow Donor Program). The main ``Seq`` object now has string-like ``.index()`` and ``.rindex()`` methods, matching the existing ``.find()`` and ``.rfind()`` implementations. The ``MutableSeq`` object retains its more list-like ``.index()`` behaviour. The ``MMTFIO`` class has been added that allows writing of MMTF file format files from a Biopython structure object. ``MMTFIO`` has a similar interface to ``PDBIO`` and ``MMCIFIO``, including the use of a ``Select`` class to write out a specified selection. This final addition to read/write support for PDB/mmCIF/MMTF in Biopython allows conversion between all three file formats. Values from mmCIF files are now read in as a list even when they consist of a single value. This change improves consistency and reduces the likelihood of making an error, but will require user code to be updated accordingly. `Bio.motifs.meme` has been updated to parse XML output files from MEME over the plain-text output file. The goal of this change is to parse a more structured data source with minimal loss of functionality upon future MEME releases. ``Bio.PDB`` has been updated to support parsing REMARK 99 header entries from PDB-style Astral files. A new keyword parameter ``full_sequences`` was added to ``Bio.pairwise2``'s pretty print method ``format_alignment`` to restore the output of local alignments to the 'old' format (showing the whole sequences including the un-aligned parts instead of only showing the aligned parts). A new function ``charge_at_pH(pH)`` has been added to ``ProtParam`` and ``IsoelectricPoint`` in ``Bio.SeqUtils``. The ``PairwiseAligner`` in ``Bio.Align`` was extended to allow generalized pairwise alignments, i.e. alignments of any Python object, for example three-letter amino acid sequences, three-nucleotide codons, and arrays of integers. A new module ``substitution_matrices`` was added to ``Bio.Align``, which includes an ``Array`` class that can be used as a substitution matrix. As the ``Array`` class is a subclass of a numpy array, mathematical operations can be applied to it directly, and C code that makes use of substitution matrices can directly access the numerical values stored in the substitution matrices. This module is intended as a replacement of ``Bio.SubsMat``, which is currently unmaintained. As in recent releases, more of our code is now explicitly available under either our original "Biopython License Agreement", or the very similar but more commonly used "3-Clause BSD License". See the ``LICENSE.rst`` file for more details. Additionally, a number of small bugs and typos have been fixed with further additions to the test suite, and there has been further work to follow the Python PEP8, PEP257 and best practice standard coding style. We have also started to use the ``black`` Python code formatting tool. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/biology/py-biopython/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/biology/py-biopython/PLIST cvs rdiff -u -r1.3 -r1.4 pkgsrc/biology/py-biopython/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1645094689277780 Content-Disposition: inline Content-Length: 17026 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/biology/py-biopython/Makefile diff -u pkgsrc/biology/py-biopython/Makefile:1.7 pkgsrc/biology/py-biopython/Makefile:1.8 --- pkgsrc/biology/py-biopython/Makefile:1.7 Tue Jan 4 20:52:35 2022 +++ pkgsrc/biology/py-biopython/Makefile Thu Feb 17 10:44:49 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2022/01/04 20:52:35 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2022/02/17 10:44:49 wiz Exp $ -DISTNAME= biopython-1.74 +DISTNAME= biopython-1.79 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 CATEGORIES= biology MASTER_SITES= http://biopython.org/DIST/ @@ -13,12 +12,14 @@ LICENSE= biopython USE_TOOLS+= pax -INSTALLATION_DIRS+= share/doc/biopython share/examples/biopython +INSTALLATION_DIRS+= share/doc/biopython-${PYVERSSUFFIX} share/examples/biopython-${PYVERSSUFFIX} + +PYTHON_VERSIONS_INCOMPATIBLE= 27 post-install: - ${INSTALL_DATA} ${WRKSRC}/README.rst ${DESTDIR}${PREFIX}/share/doc/biopython - ${INSTALL_DATA} ${WRKSRC}/Doc/Tutorial.pdf ${DESTDIR}${PREFIX}/share/doc/biopython - cd ${WRKSRC}/Doc/examples && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/examples/biopython + ${INSTALL_DATA} ${WRKSRC}/README.rst ${DESTDIR}${PREFIX}/share/doc/biopython-${PYVERSSUFFIX} + ${INSTALL_DATA} ${WRKSRC}/Doc/Tutorial.pdf ${DESTDIR}${PREFIX}/share/doc/biopython-${PYVERSSUFFIX} + cd ${WRKSRC}/Doc/examples && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/examples/biopython-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" .include "../../math/py-numpy/buildlink3.mk" Index: pkgsrc/biology/py-biopython/PLIST diff -u pkgsrc/biology/py-biopython/PLIST:1.1 pkgsrc/biology/py-biopython/PLIST:1.2 --- pkgsrc/biology/py-biopython/PLIST:1.1 Fri Aug 9 21:52:34 2019 +++ pkgsrc/biology/py-biopython/PLIST Thu Feb 17 10:44:49 2022 @@ -1,9 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2019/08/09 21:52:34 brook Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.2 2022/02/17 10:44:49 wiz Exp $ ${PYSITELIB}/Bio/Affy/CelFile.py ${PYSITELIB}/Bio/Affy/CelFile.pyc ${PYSITELIB}/Bio/Affy/CelFile.pyo @@ -48,6 +43,36 @@ ${PYSITELIB}/Bio/Align/__init__.pyc ${PYSITELIB}/Bio/Align/__init__.pyo ${PYSITELIB}/Bio/Align/_aligners.c ${PYSITELIB}/Bio/Align/_aligners.so +${PYSITELIB}/Bio/Align/substitution_matrices/__init__.py +${PYSITELIB}/Bio/Align/substitution_matrices/__init__.pyc +${PYSITELIB}/Bio/Align/substitution_matrices/__init__.pyo +${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER22 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER6 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BENNER74 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM45 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM50 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM62 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM80 +${PYSITELIB}/Bio/Align/substitution_matrices/data/BLOSUM90 +${PYSITELIB}/Bio/Align/substitution_matrices/data/DAYHOFF +${PYSITELIB}/Bio/Align/substitution_matrices/data/FENG +${PYSITELIB}/Bio/Align/substitution_matrices/data/GENETIC +${PYSITELIB}/Bio/Align/substitution_matrices/data/GONNET1992 +${PYSITELIB}/Bio/Align/substitution_matrices/data/HOXD70 +${PYSITELIB}/Bio/Align/substitution_matrices/data/JOHNSON +${PYSITELIB}/Bio/Align/substitution_matrices/data/JONES +${PYSITELIB}/Bio/Align/substitution_matrices/data/LEVIN +${PYSITELIB}/Bio/Align/substitution_matrices/data/MCLACHLAN +${PYSITELIB}/Bio/Align/substitution_matrices/data/MDM78 +${PYSITELIB}/Bio/Align/substitution_matrices/data/NUC.4.4 +${PYSITELIB}/Bio/Align/substitution_matrices/data/PAM250 +${PYSITELIB}/Bio/Align/substitution_matrices/data/PAM30 +${PYSITELIB}/Bio/Align/substitution_matrices/data/PAM70 +${PYSITELIB}/Bio/Align/substitution_matrices/data/RAO +${PYSITELIB}/Bio/Align/substitution_matrices/data/RISLER +${PYSITELIB}/Bio/Align/substitution_matrices/data/SCHNEIDER +${PYSITELIB}/Bio/Align/substitution_matrices/data/STR +${PYSITELIB}/Bio/Align/substitution_matrices/data/TRANS ${PYSITELIB}/Bio/AlignIO/ClustalIO.py ${PYSITELIB}/Bio/AlignIO/ClustalIO.pyc ${PYSITELIB}/Bio/AlignIO/ClustalIO.pyo @@ -66,6 +91,9 @@ ${PYSITELIB}/Bio/AlignIO/MafIO.pyo ${PYSITELIB}/Bio/AlignIO/MauveIO.py ${PYSITELIB}/Bio/AlignIO/MauveIO.pyc ${PYSITELIB}/Bio/AlignIO/MauveIO.pyo +${PYSITELIB}/Bio/AlignIO/MsfIO.py +${PYSITELIB}/Bio/AlignIO/MsfIO.pyc +${PYSITELIB}/Bio/AlignIO/MsfIO.pyo ${PYSITELIB}/Bio/AlignIO/NexusIO.py ${PYSITELIB}/Bio/AlignIO/NexusIO.pyc ${PYSITELIB}/Bio/AlignIO/NexusIO.pyo @@ -78,12 +106,6 @@ ${PYSITELIB}/Bio/AlignIO/StockholmIO.pyo ${PYSITELIB}/Bio/AlignIO/__init__.py ${PYSITELIB}/Bio/AlignIO/__init__.pyc ${PYSITELIB}/Bio/AlignIO/__init__.pyo -${PYSITELIB}/Bio/Alphabet/IUPAC.py -${PYSITELIB}/Bio/Alphabet/IUPAC.pyc -${PYSITELIB}/Bio/Alphabet/IUPAC.pyo -${PYSITELIB}/Bio/Alphabet/Reduced.py -${PYSITELIB}/Bio/Alphabet/Reduced.pyc -${PYSITELIB}/Bio/Alphabet/Reduced.pyo ${PYSITELIB}/Bio/Alphabet/__init__.py ${PYSITELIB}/Bio/Alphabet/__init__.pyc ${PYSITELIB}/Bio/Alphabet/__init__.pyo @@ -121,9 +143,6 @@ ${PYSITELIB}/Bio/Cluster/clustermodule.c ${PYSITELIB}/Bio/Compass/__init__.py ${PYSITELIB}/Bio/Compass/__init__.pyc ${PYSITELIB}/Bio/Compass/__init__.pyo -${PYSITELIB}/Bio/Crystal/__init__.py -${PYSITELIB}/Bio/Crystal/__init__.pyc -${PYSITELIB}/Bio/Crystal/__init__.pyo ${PYSITELIB}/Bio/Data/CodonTable.py ${PYSITELIB}/Bio/Data/CodonTable.pyc ${PYSITELIB}/Bio/Data/CodonTable.pyo @@ -421,15 +440,6 @@ ${PYSITELIB}/Bio/ExPASy/__init__.pyo ${PYSITELIB}/Bio/ExPASy/cellosaurus.py ${PYSITELIB}/Bio/ExPASy/cellosaurus.pyc ${PYSITELIB}/Bio/ExPASy/cellosaurus.pyo -${PYSITELIB}/Bio/FSSP/FSSPTools.py -${PYSITELIB}/Bio/FSSP/FSSPTools.pyc -${PYSITELIB}/Bio/FSSP/FSSPTools.pyo -${PYSITELIB}/Bio/FSSP/__init__.py -${PYSITELIB}/Bio/FSSP/__init__.pyc -${PYSITELIB}/Bio/FSSP/__init__.pyo -${PYSITELIB}/Bio/FSSP/fssp_rec.py -${PYSITELIB}/Bio/FSSP/fssp_rec.pyc -${PYSITELIB}/Bio/FSSP/fssp_rec.pyo ${PYSITELIB}/Bio/File.py ${PYSITELIB}/Bio/File.pyc ${PYSITELIB}/Bio/File.pyo @@ -523,20 +533,6 @@ ${PYSITELIB}/Bio/HMM/Utilities.pyo ${PYSITELIB}/Bio/HMM/__init__.py ${PYSITELIB}/Bio/HMM/__init__.pyc ${PYSITELIB}/Bio/HMM/__init__.pyo -${PYSITELIB}/Bio/Index.py -${PYSITELIB}/Bio/Index.pyc -${PYSITELIB}/Bio/Index.pyo -${PYSITELIB}/Bio/KDTree/KDTree.c -${PYSITELIB}/Bio/KDTree/KDTree.h -${PYSITELIB}/Bio/KDTree/KDTree.py -${PYSITELIB}/Bio/KDTree/KDTree.pyc -${PYSITELIB}/Bio/KDTree/KDTree.pyo -${PYSITELIB}/Bio/KDTree/KDTreemodule.c -${PYSITELIB}/Bio/KDTree/Neighbor.h -${PYSITELIB}/Bio/KDTree/_CKDTree.so -${PYSITELIB}/Bio/KDTree/__init__.py -${PYSITELIB}/Bio/KDTree/__init__.pyc -${PYSITELIB}/Bio/KDTree/__init__.pyo ${PYSITELIB}/Bio/KEGG/Compound/__init__.py ${PYSITELIB}/Bio/KEGG/Compound/__init__.pyc ${PYSITELIB}/Bio/KEGG/Compound/__init__.pyo @@ -656,6 +652,9 @@ ${PYSITELIB}/Bio/PDB/PDBList.pyo ${PYSITELIB}/Bio/PDB/PDBParser.py ${PYSITELIB}/Bio/PDB/PDBParser.pyc ${PYSITELIB}/Bio/PDB/PDBParser.pyo +${PYSITELIB}/Bio/PDB/PICIO.py +${PYSITELIB}/Bio/PDB/PICIO.pyc +${PYSITELIB}/Bio/PDB/PICIO.pyo ${PYSITELIB}/Bio/PDB/PSEA.py ${PYSITELIB}/Bio/PDB/PSEA.pyc ${PYSITELIB}/Bio/PDB/PSEA.pyo @@ -673,6 +672,12 @@ ${PYSITELIB}/Bio/PDB/Residue.pyo ${PYSITELIB}/Bio/PDB/ResidueDepth.py ${PYSITELIB}/Bio/PDB/ResidueDepth.pyc ${PYSITELIB}/Bio/PDB/ResidueDepth.pyo +${PYSITELIB}/Bio/PDB/SASA.py +${PYSITELIB}/Bio/PDB/SASA.pyc +${PYSITELIB}/Bio/PDB/SASA.pyo +${PYSITELIB}/Bio/PDB/SCADIO.py +${PYSITELIB}/Bio/PDB/SCADIO.pyc +${PYSITELIB}/Bio/PDB/SCADIO.pyo ${PYSITELIB}/Bio/PDB/Selection.py ${PYSITELIB}/Bio/PDB/Selection.pyc ${PYSITELIB}/Bio/PDB/Selection.pyo @@ -691,6 +696,15 @@ ${PYSITELIB}/Bio/PDB/Superimposer.pyo ${PYSITELIB}/Bio/PDB/__init__.py ${PYSITELIB}/Bio/PDB/__init__.pyc ${PYSITELIB}/Bio/PDB/__init__.pyo +${PYSITELIB}/Bio/PDB/ic_data.py +${PYSITELIB}/Bio/PDB/ic_data.pyc +${PYSITELIB}/Bio/PDB/ic_data.pyo +${PYSITELIB}/Bio/PDB/ic_rebuild.py +${PYSITELIB}/Bio/PDB/ic_rebuild.pyc +${PYSITELIB}/Bio/PDB/ic_rebuild.pyo +${PYSITELIB}/Bio/PDB/internal_coords.py +${PYSITELIB}/Bio/PDB/internal_coords.pyc +${PYSITELIB}/Bio/PDB/internal_coords.pyo ${PYSITELIB}/Bio/PDB/kdtrees.c ${PYSITELIB}/Bio/PDB/kdtrees.so ${PYSITELIB}/Bio/PDB/mmcifio.py @@ -702,6 +716,9 @@ ${PYSITELIB}/Bio/PDB/mmtf/DefaultParser. ${PYSITELIB}/Bio/PDB/mmtf/__init__.py ${PYSITELIB}/Bio/PDB/mmtf/__init__.pyc ${PYSITELIB}/Bio/PDB/mmtf/__init__.pyo +${PYSITELIB}/Bio/PDB/mmtf/mmtfio.py +${PYSITELIB}/Bio/PDB/mmtf/mmtfio.pyc +${PYSITELIB}/Bio/PDB/mmtf/mmtfio.pyo ${PYSITELIB}/Bio/PDB/parse_pdb_header.py ${PYSITELIB}/Bio/PDB/parse_pdb_header.pyc ${PYSITELIB}/Bio/PDB/parse_pdb_header.pyo @@ -819,9 +836,6 @@ ${PYSITELIB}/Bio/PopGen/GenePop/FilePars ${PYSITELIB}/Bio/PopGen/GenePop/LargeFileParser.py ${PYSITELIB}/Bio/PopGen/GenePop/LargeFileParser.pyc ${PYSITELIB}/Bio/PopGen/GenePop/LargeFileParser.pyo -${PYSITELIB}/Bio/PopGen/GenePop/Utils.py -${PYSITELIB}/Bio/PopGen/GenePop/Utils.pyc -${PYSITELIB}/Bio/PopGen/GenePop/Utils.pyo ${PYSITELIB}/Bio/PopGen/GenePop/__init__.py ${PYSITELIB}/Bio/PopGen/GenePop/__init__.pyc ${PYSITELIB}/Bio/PopGen/GenePop/__init__.pyo @@ -975,6 +989,9 @@ ${PYSITELIB}/Bio/SeqIO/AceIO.pyo ${PYSITELIB}/Bio/SeqIO/FastaIO.py ${PYSITELIB}/Bio/SeqIO/FastaIO.pyc ${PYSITELIB}/Bio/SeqIO/FastaIO.pyo +${PYSITELIB}/Bio/SeqIO/GckIO.py +${PYSITELIB}/Bio/SeqIO/GckIO.pyc +${PYSITELIB}/Bio/SeqIO/GckIO.pyo ${PYSITELIB}/Bio/SeqIO/IgIO.py ${PYSITELIB}/Bio/SeqIO/IgIO.pyc ${PYSITELIB}/Bio/SeqIO/IgIO.pyo @@ -1005,24 +1022,32 @@ ${PYSITELIB}/Bio/SeqIO/SeqXmlIO.pyo ${PYSITELIB}/Bio/SeqIO/SffIO.py ${PYSITELIB}/Bio/SeqIO/SffIO.pyc ${PYSITELIB}/Bio/SeqIO/SffIO.pyo +${PYSITELIB}/Bio/SeqIO/SnapGeneIO.py +${PYSITELIB}/Bio/SeqIO/SnapGeneIO.pyc +${PYSITELIB}/Bio/SeqIO/SnapGeneIO.pyo ${PYSITELIB}/Bio/SeqIO/SwissIO.py ${PYSITELIB}/Bio/SeqIO/SwissIO.pyc ${PYSITELIB}/Bio/SeqIO/SwissIO.pyo ${PYSITELIB}/Bio/SeqIO/TabIO.py ${PYSITELIB}/Bio/SeqIO/TabIO.pyc ${PYSITELIB}/Bio/SeqIO/TabIO.pyo +${PYSITELIB}/Bio/SeqIO/TwoBitIO.py +${PYSITELIB}/Bio/SeqIO/TwoBitIO.pyc +${PYSITELIB}/Bio/SeqIO/TwoBitIO.pyo ${PYSITELIB}/Bio/SeqIO/UniprotIO.py ${PYSITELIB}/Bio/SeqIO/UniprotIO.pyc ${PYSITELIB}/Bio/SeqIO/UniprotIO.pyo +${PYSITELIB}/Bio/SeqIO/XdnaIO.py +${PYSITELIB}/Bio/SeqIO/XdnaIO.pyc +${PYSITELIB}/Bio/SeqIO/XdnaIO.pyo ${PYSITELIB}/Bio/SeqIO/__init__.py ${PYSITELIB}/Bio/SeqIO/__init__.pyc ${PYSITELIB}/Bio/SeqIO/__init__.pyo -${PYSITELIB}/Bio/SeqIO/_convert.py -${PYSITELIB}/Bio/SeqIO/_convert.pyc -${PYSITELIB}/Bio/SeqIO/_convert.pyo ${PYSITELIB}/Bio/SeqIO/_index.py ${PYSITELIB}/Bio/SeqIO/_index.pyc ${PYSITELIB}/Bio/SeqIO/_index.pyo +${PYSITELIB}/Bio/SeqIO/_twoBitIO.c +${PYSITELIB}/Bio/SeqIO/_twoBitIO.so ${PYSITELIB}/Bio/SeqRecord.py ${PYSITELIB}/Bio/SeqRecord.pyc ${PYSITELIB}/Bio/SeqRecord.pyo @@ -1074,12 +1099,6 @@ ${PYSITELIB}/Bio/Sequencing/Phd.pyo ${PYSITELIB}/Bio/Sequencing/__init__.py ${PYSITELIB}/Bio/Sequencing/__init__.pyc ${PYSITELIB}/Bio/Sequencing/__init__.pyo -${PYSITELIB}/Bio/Statistics/__init__.py -${PYSITELIB}/Bio/Statistics/__init__.pyc -${PYSITELIB}/Bio/Statistics/__init__.pyo -${PYSITELIB}/Bio/Statistics/lowess.py -${PYSITELIB}/Bio/Statistics/lowess.pyc -${PYSITELIB}/Bio/Statistics/lowess.pyo ${PYSITELIB}/Bio/SubsMat/FreqTable.py ${PYSITELIB}/Bio/SubsMat/FreqTable.pyc ${PYSITELIB}/Bio/SubsMat/FreqTable.pyo @@ -1119,9 +1138,6 @@ ${PYSITELIB}/Bio/Wise/psw.pyo ${PYSITELIB}/Bio/__init__.py ${PYSITELIB}/Bio/__init__.pyc ${PYSITELIB}/Bio/__init__.pyo -${PYSITELIB}/Bio/_py3k/__init__.py -${PYSITELIB}/Bio/_py3k/__init__.pyc -${PYSITELIB}/Bio/_py3k/__init__.pyo ${PYSITELIB}/Bio/_utils.py ${PYSITELIB}/Bio/_utils.pyc ${PYSITELIB}/Bio/_utils.pyo @@ -1137,9 +1153,6 @@ ${PYSITELIB}/Bio/codonalign/chisq.pyo ${PYSITELIB}/Bio/codonalign/codonalignment.py ${PYSITELIB}/Bio/codonalign/codonalignment.pyc ${PYSITELIB}/Bio/codonalign/codonalignment.pyo -${PYSITELIB}/Bio/codonalign/codonalphabet.py -${PYSITELIB}/Bio/codonalign/codonalphabet.pyc -${PYSITELIB}/Bio/codonalign/codonalphabet.pyo ${PYSITELIB}/Bio/codonalign/codonseq.py ${PYSITELIB}/Bio/codonalign/codonseq.pyc ${PYSITELIB}/Bio/codonalign/codonseq.pyo @@ -1207,13 +1220,6 @@ ${PYSITELIB}/Bio/phenotype/phen_micro.py ${PYSITELIB}/Bio/phenotype/pm_fitting.py ${PYSITELIB}/Bio/phenotype/pm_fitting.pyc ${PYSITELIB}/Bio/phenotype/pm_fitting.pyo -${PYSITELIB}/Bio/trie.c -${PYSITELIB}/Bio/trie.h -${PYSITELIB}/Bio/trie.so -${PYSITELIB}/Bio/triefind.py -${PYSITELIB}/Bio/triefind.pyc -${PYSITELIB}/Bio/triefind.pyo -${PYSITELIB}/Bio/triemodule.c ${PYSITELIB}/BioSQL/BioSeq.py ${PYSITELIB}/BioSQL/BioSeq.pyc ${PYSITELIB}/BioSQL/BioSeq.pyo @@ -1229,34 +1235,37 @@ ${PYSITELIB}/BioSQL/Loader.pyo ${PYSITELIB}/BioSQL/__init__.py ${PYSITELIB}/BioSQL/__init__.pyc ${PYSITELIB}/BioSQL/__init__.pyo -share/doc/biopython/README.rst -share/doc/biopython/Tutorial.pdf -share/examples/biopython/ACT_example.py -share/examples/biopython/PF05371_seed.sth -share/examples/biopython/Plates.csv -share/examples/biopython/Proux_et_al_2002_Figure_6.py -share/examples/biopython/alpha.faa -share/examples/biopython/beta.faa -share/examples/biopython/clustal_run.py -share/examples/biopython/ec_5.4.2.2.txt -share/examples/biopython/fasta_dictionary.py -share/examples/biopython/fasta_iterator.py -share/examples/biopython/getgene.py -share/examples/biopython/ls_orchid.fasta -share/examples/biopython/ls_orchid.gbk -share/examples/biopython/ls_orchid.gbk.bgz -share/examples/biopython/ls_orchid.gbk.bz2 -share/examples/biopython/ls_orchid.gbk.gz -share/examples/biopython/m_cold.fasta -share/examples/biopython/make_subsmat.py -share/examples/biopython/my_blast.xml -share/examples/biopython/my_blat.psl -share/examples/biopython/nmr/noed.xpk -share/examples/biopython/nmr/simplepredict.py -share/examples/biopython/opuntia.aln -share/examples/biopython/opuntia.dnd -share/examples/biopython/opuntia.fasta -share/examples/biopython/protein.aln -share/examples/biopython/simple.dnd -share/examples/biopython/swissprot.py -share/examples/biopython/www_blast.py +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +share/doc/biopython-${PYVERSSUFFIX}/README.rst +share/doc/biopython-${PYVERSSUFFIX}/Tutorial.pdf +share/examples/biopython-${PYVERSSUFFIX}/ACT_example.py +share/examples/biopython-${PYVERSSUFFIX}/PF05371_seed.sth +share/examples/biopython-${PYVERSSUFFIX}/Plates.csv +share/examples/biopython-${PYVERSSUFFIX}/Proux_et_al_2002_Figure_6.py +share/examples/biopython-${PYVERSSUFFIX}/alpha.faa +share/examples/biopython-${PYVERSSUFFIX}/beta.faa +share/examples/biopython-${PYVERSSUFFIX}/clustal_run.py +share/examples/biopython-${PYVERSSUFFIX}/ec_5.4.2.2.txt +share/examples/biopython-${PYVERSSUFFIX}/fasta_dictionary.py +share/examples/biopython-${PYVERSSUFFIX}/fasta_iterator.py +share/examples/biopython-${PYVERSSUFFIX}/getgene.py +share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.fasta +share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk +share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk.bgz +share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk.bz2 +share/examples/biopython-${PYVERSSUFFIX}/ls_orchid.gbk.gz +share/examples/biopython-${PYVERSSUFFIX}/m_cold.fasta +share/examples/biopython-${PYVERSSUFFIX}/my_blast.xml +share/examples/biopython-${PYVERSSUFFIX}/my_blat.psl +share/examples/biopython-${PYVERSSUFFIX}/nmr/noed.xpk +share/examples/biopython-${PYVERSSUFFIX}/nmr/simplepredict.py +share/examples/biopython-${PYVERSSUFFIX}/opuntia.aln +share/examples/biopython-${PYVERSSUFFIX}/opuntia.dnd +share/examples/biopython-${PYVERSSUFFIX}/opuntia.fasta +share/examples/biopython-${PYVERSSUFFIX}/simple.dnd +share/examples/biopython-${PYVERSSUFFIX}/swissprot.py +share/examples/biopython-${PYVERSSUFFIX}/www_blast.py Index: pkgsrc/biology/py-biopython/distinfo diff -u pkgsrc/biology/py-biopython/distinfo:1.3 pkgsrc/biology/py-biopython/distinfo:1.4 --- pkgsrc/biology/py-biopython/distinfo:1.3 Tue Oct 26 10:03:43 2021 +++ pkgsrc/biology/py-biopython/distinfo Thu Feb 17 10:44:49 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 10:03:43 nia Exp $ +$NetBSD: distinfo,v 1.4 2022/02/17 10:44:49 wiz Exp $ -BLAKE2s (biopython-1.74.tar.gz) = 1286b1f5ac5faacc86861bdca352a36c0f0b188d361f6c72955d7d16955f3310 -SHA512 (biopython-1.74.tar.gz) = a5611b993e383d76d2fdc9be22481624180748f06f107e603a062c51b7ca7cf8603d6d97e11d64cd011ae7bd2696c8bf3659b9c625c84c479164a6171d5e8415 -Size (biopython-1.74.tar.gz) = 16129257 bytes +BLAKE2s (biopython-1.79.tar.gz) = ec26a4018cb514124d11a3c1beed6c995738b2016f044e2e3ca9691fe01dc44a +SHA512 (biopython-1.79.tar.gz) = 81e2718f4015bb038637b4d1181e6bea48018fec1e769c5f0ab75442a769336899191f1222e82e1b9569c1fac470500d7582420e5cbe9bce0056b41751adeaaa +Size (biopython-1.79.tar.gz) = 16738730 bytes --_----------=_1645094689277780--