forked from pool/python-biopython
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
f9effc5e6c | |||
505fab2baf | |||
779130c0d0 | |||
aea6029c1a | |||
437b5f02fb | |||
65d51f5459 | |||
2568d7f53c | |||
34b75af993 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:78e6bfb78de63034037afd35fe77cb6e0a9e5b62706becf78a7d922b16ed83f7
|
|
||||||
size 19431530
|
|
3
biopython-1.85.tar.gz
Normal file
3
biopython-1.85.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5dafab74059de4e78f49f6b5684eddae6e7ce46f09cfa059c1d1339e8b1ea0a6
|
||||||
|
size 19909902
|
@@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 9 04:40:54 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyproject macros.
|
||||||
|
|
||||||
|
Wed Mar 12 23:26:04 UTC 2025 - Friedrich Haubensak <hsk17@mail.de>
|
||||||
|
|
||||||
|
- update to 1.85:
|
||||||
|
* Some optimisation work was done for "Bio.SeqIO"
|
||||||
|
* "Bio.motifs" now supports reading PFM from Cys2His2 Zinc Finger
|
||||||
|
Proteins PWM Predictor
|
||||||
|
* "Bio.motifs" now supports reverse complementing RNA motifs
|
||||||
|
and correctly generating degenerate consensus sequences for
|
||||||
|
RNA motifs
|
||||||
|
* "Bio.motifs.minimal" now supports parsing RNA motifs and
|
||||||
|
parsing motifs for which not all statistics are provided
|
||||||
|
* "Bio.motifs.clusterbuster" now supports parsing GAP and WEIGHT
|
||||||
|
parameters and can optionally write Cluster Buster motif files
|
||||||
|
with floats instead of integers
|
||||||
|
- drop patch py313-support.patch, now upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 22 12:13:40 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- add py313-support.patch to fix build with python 3.13
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 10 15:36:36 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.84:
|
||||||
|
* The old parser stores information in a
|
||||||
|
Bio.Blast.NCBIXML.Blast object, with attribute names based on
|
||||||
|
plain-text Blast output. The new parser stores information in
|
||||||
|
a Bio.Blast.Record object. This class follows the DTD that
|
||||||
|
describes the XML in terms of attribute names and dictionary
|
||||||
|
key names, class structure, and object types. This makes it
|
||||||
|
easier to find the detailed description of each field in the
|
||||||
|
NCBI Blast documentation.
|
||||||
|
* The old parser stores alignment information directly as seen
|
||||||
|
in the BLAST XML output, i.e. as strings with dashes to
|
||||||
|
represent gaps. The new parser stores the alignment
|
||||||
|
information as a Bio.Align.Alignment object, which can then
|
||||||
|
be used to e.g. print the alignment in a different format.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jan 20 12:29:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Jan 20 12:29:01 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-biopython
|
# spec file for package python-biopython
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,13 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
# Tests require a network connection
|
# Tests require a network connection
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
%define skip_python2 1
|
%{?sle15_python_module_pythons}
|
||||||
%define skip_python36 1
|
|
||||||
Name: python-biopython
|
Name: python-biopython
|
||||||
Version: 1.83
|
Version: 1.85
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python Tools for Computational Molecular Biology
|
Summary: Python Tools for Computational Molecular Biology
|
||||||
License: BSD-3-Clause AND MIT
|
License: BSD-3-Clause AND MIT
|
||||||
@@ -31,7 +29,9 @@ Source0: https://files.pythonhosted.org/packages/source/b/biopython/biopy
|
|||||||
Source100: python-biopython-rpmlintrc
|
Source100: python-biopython-rpmlintrc
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: %{python_module numpy-devel}
|
BuildRequires: %{python_module numpy-devel}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: %{python_module xml}
|
BuildRequires: %{python_module xml}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
@@ -53,18 +53,18 @@ The Biopython Project is an international association of developers of freely
|
|||||||
available Python tools for computational molecular biology.
|
available Python tools for computational molecular biology.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n biopython-%{version}
|
%autosetup -p1 -n biopython-%{version}
|
||||||
find -type f -name "*.py" -exec sed -i '/^#![ ]*\/usr\/bin\/.*$/ d' {} 2>/dev/null ';'
|
find -type f -name "*.py" -exec sed -i '/^#![ ]*\/usr\/bin\/.*$/ d' {} 2>/dev/null ';'
|
||||||
# Example scripts cannot be in a subdirectory
|
# Example scripts cannot be in a subdirectory
|
||||||
mv -v Doc/examples examples
|
mv -v Doc/examples examples
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
@@ -79,6 +79,6 @@ export LANG=en_US.UTF-8
|
|||||||
%license LICENSE.rst
|
%license LICENSE.rst
|
||||||
%{python_sitearch}/Bio/
|
%{python_sitearch}/Bio/
|
||||||
%{python_sitearch}/BioSQL/
|
%{python_sitearch}/BioSQL/
|
||||||
%{python_sitearch}/biopython-%{version}-py*.egg-info
|
%{python_sitearch}/biopython-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user