Skip to content

Commit aef403b

Browse files
committed
2025.2
1 parent bbc0b6e commit aef403b

12 files changed

Lines changed: 39 additions & 37 deletions

File tree

.github/env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ channels:
44
- bioconda
55
- anaconda
66
dependencies:
7-
- biobb_common ==5.1.1
7+
- biobb_common ==5.2.0
88
- biobb_structure_checking >=3.15.6

.github/workflows/linting_and_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [self-hosted]
24-
python-version: ["3.9", "3.10", "3.11", "3.12"]
24+
python-version: ["3.10", "3.11", "3.12"]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Check out repository code

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![](https://img.shields.io/conda/vn/bioconda/biobb_structure_utils?label=Conda)](https://anaconda.org/bioconda/biobb_structure_utils)
44
[![](https://img.shields.io/conda/dn/bioconda/biobb_structure_utils?label=Conda%20Downloads)](https://anaconda.org/bioconda/biobb_structure_utils)
55
[![](https://img.shields.io/badge/Docker-Quay.io-blue)](https://quay.io/repository/biocontainers/biobb_structure_utils?tab=tags)
6-
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.1.0--pyhdfd78af_0)
6+
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.2.0--pyhdfd78af_0)
77

88
[![](https://img.shields.io/badge/OS-Unix%20%7C%20MacOS-blue)](https://github.com/bioexcel/biobb_structure_utils)
99
[![](https://img.shields.io/pypi/pyversions/biobb-structure-utils.svg?label=Python%20Versions)](https://pypi.org/project/biobb-structure-utils/)
@@ -36,7 +36,7 @@ Biobb_structure_utils is the Biobb module collection to modify or extract inform
3636
[latest API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/).
3737

3838
### Version
39-
v5.1.0 2025.1
39+
v5.2.0 2025.2
4040

4141
### Installation
4242

@@ -47,7 +47,7 @@ Using PIP:
4747
* Installation:
4848

4949

50-
pip install "biobb_structure_utils>=5.1.0"
50+
pip install "biobb_structure_utils>=5.2.0"
5151

5252

5353
* Usage: [Python API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/modules.html)
@@ -57,7 +57,7 @@ Using ANACONDA:
5757
* Installation:
5858

5959

60-
conda install -c bioconda "biobb_structure_utils>=5.1.0"
60+
conda install -c bioconda "biobb_structure_utils>=5.2.0"
6161

6262

6363
* Usage: With conda installation BioBBs can be used with the [Python API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/modules.html) and the [Command Line documentation](https://biobb-structure-utils.readthedocs.io/en/latest/command_line.html)
@@ -67,13 +67,13 @@ Using DOCKER:
6767
* Installation:
6868

6969

70-
docker pull quay.io/biocontainers/biobb_structure_utils:5.1.0--pyhdfd78af_0
70+
docker pull quay.io/biocontainers/biobb_structure_utils:5.2.0--pyhdfd78af_0
7171

7272

7373
* Usage:
7474

7575

76-
docker run quay.io/biocontainers/biobb_structure_utils:5.1.0--pyhdfd78af_0 <command>
76+
docker run quay.io/biocontainers/biobb_structure_utils:5.2.0--pyhdfd78af_0 <command>
7777

7878
Using SINGULARITY:
7979

@@ -82,7 +82,7 @@ Using SINGULARITY:
8282
* Installation:
8383

8484

85-
singularity pull --name biobb_structure_utils.sif https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.1.0--pyhdfd78af_0
85+
singularity pull --name biobb_structure_utils.sif https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.2.0--pyhdfd78af_0
8686

8787

8888
* Usage:

biobb_structure_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
name = "biobb_structure_utils"
44
__all__ = ["utils"]
5-
__version__ = "5.1.0"
5+
__version__ = "5.2.0"

biobb_structure_utils/docs/source/change_log.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Biobb Structure Utils changelog
22

3+
## What's new in version [5.2.0](https://github.com/bioexcel/biobb_amber/releases/tag/v5.2.0)?
4+
5+
### Changes
6+
7+
* [UPDATE] Update to biobb_common 5.2.0
8+
39
## What's new in version [5.1.0](https://github.com/bioexcel/biobb_structure_utils/releases/tag/v5.1.0)?
410

511
### Changes

biobb_structure_utils/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = "5.1.0"
76+
version = "5.2.0"
7777
# The full version, including alpha/beta/rc tags.
78-
release = "5.1.0"
78+
release = "5.2.0"
7979

8080
# The language for content autogenerated by Sphinx. Refer to documentation
8181
# for a list of supported languages.

biobb_structure_utils/docs/source/readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![](https://img.shields.io/conda/vn/bioconda/biobb_structure_utils?label=Conda)](https://anaconda.org/bioconda/biobb_structure_utils)
44
[![](https://img.shields.io/conda/dn/bioconda/biobb_structure_utils?label=Conda%20Downloads)](https://anaconda.org/bioconda/biobb_structure_utils)
55
[![](https://img.shields.io/badge/Docker-Quay.io-blue)](https://quay.io/repository/biocontainers/biobb_structure_utils?tab=tags)
6-
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.1.0--pyhdfd78af_0)
6+
[![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.2.0--pyhdfd78af_0)
77

88
[![](https://img.shields.io/badge/OS-Unix%20%7C%20MacOS-blue)](https://github.com/bioexcel/biobb_structure_utils)
99
[![](https://img.shields.io/pypi/pyversions/biobb-structure-utils.svg?label=Python%20Versions)](https://pypi.org/project/biobb-structure-utils/)
@@ -36,7 +36,7 @@ Biobb_structure_utils is the Biobb module collection to modify or extract inform
3636
[latest API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/).
3737

3838
### Version
39-
v5.1.0 2025.1
39+
v5.2.0 2025.2
4040

4141
### Installation
4242

@@ -47,7 +47,7 @@ Using PIP:
4747
* Installation:
4848

4949

50-
pip install "biobb_structure_utils>=5.1.0"
50+
pip install "biobb_structure_utils>=5.2.0"
5151

5252

5353
* Usage: [Python API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/modules.html)
@@ -57,7 +57,7 @@ Using ANACONDA:
5757
* Installation:
5858

5959

60-
conda install -c bioconda "biobb_structure_utils>=5.1.0"
60+
conda install -c bioconda "biobb_structure_utils>=5.2.0"
6161

6262

6363
* Usage: With conda installation BioBBs can be used with the [Python API documentation](https://biobb-structure-utils.readthedocs.io/en/latest/modules.html) and the [Command Line documentation](https://biobb-structure-utils.readthedocs.io/en/latest/command_line.html)
@@ -67,13 +67,13 @@ Using DOCKER:
6767
* Installation:
6868

6969

70-
docker pull quay.io/biocontainers/biobb_structure_utils:5.1.0--pyhdfd78af_0
70+
docker pull quay.io/biocontainers/biobb_structure_utils:5.2.0--pyhdfd78af_0
7171

7272

7373
* Usage:
7474

7575

76-
docker run quay.io/biocontainers/biobb_structure_utils:5.1.0--pyhdfd78af_0 <command>
76+
docker run quay.io/biocontainers/biobb_structure_utils:5.2.0--pyhdfd78af_0 <command>
7777

7878
Using SINGULARITY:
7979

@@ -82,7 +82,7 @@ Using SINGULARITY:
8282
* Installation:
8383

8484

85-
singularity pull --name biobb_structure_utils.sif https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.1.0--pyhdfd78af_0
85+
singularity pull --name biobb_structure_utils.sif https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.2.0--pyhdfd78af_0
8686

8787

8888
* Usage:

biobb_structure_utils/docs/source/schema.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"applicationSubCategory": "http://www.edamontology.org/topic_3892",
1111
"citation": "https://www.nature.com/articles/s41597-019-0177-4",
1212
"license": "https://www.apache.org/licenses/LICENSE-2.0",
13-
"softwareVersion": "5.1.0",
13+
"softwareVersion": "5.2.0",
1414
"applicationSuite": "BioBB BioExcel Building Blocks",
1515
"codeRepository": "https://github.com/bioexcel/biobb_structure_utils",
1616
"isAccessibleForFree": "True",

biobb_structure_utils/json_schemas/biobb_structure_utils.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"github": "https://github.com/bioexcel/biobb_structure_utils",
55
"readthedocs": "https://biobb-structure-utils.readthedocs.io/en/latest/",
66
"conda": "https://anaconda.org/bioconda/biobb_structure_utils",
7-
"docker": "https://quay.io/biocontainers/biobb_structure_utils:5.1.0--pyhdfd78af_0",
8-
"singularity": "https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.1.0--pyhdfd78af_0",
9-
"version": "5.1.0",
7+
"docker": "https://quay.io/biocontainers/biobb_structure_utils:5.2.0--pyhdfd78af_0",
8+
"singularity": "https://depot.galaxyproject.org/singularity/biobb_structure_utils:5.2.0--pyhdfd78af_0",
9+
"version": "5.2.0",
1010
"rest": true,
1111
"tools": [
1212
{
@@ -131,12 +131,12 @@
131131
}
132132
],
133133
"dep_pypi": [
134-
"install_requires=['biobb_common==5.1.1', 'biobb_structure_checking>=3.15.6']",
135-
"python_requires='>=3.9'"
134+
"install_requires=['biobb_common==5.2.0', 'biobb_structure_checking>=3.15.6']",
135+
"python_requires='>=3.10'"
136136
],
137137
"dep_conda": [
138-
"python >=3.9",
139-
"biobb_common ==5.1.1",
138+
"python >=3.10",
139+
"biobb_common ==5.2.0",
140140
"biobb_structure_checking >=3.15.6"
141141
],
142142
"dep_conda_extra": [],

biobb_structure_utils/utils/extract_model.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,7 @@ def launch(self) -> int:
144144
self.copy_to_host()
145145

146146
# Remove temporal files
147-
self.tmp_files.extend([
148-
tmp_folder
149-
])
147+
self.tmp_files.append(tmp_folder)
150148
self.remove_tmp_files()
151149

152150
self.check_arguments(output_files_created=True, raise_exception=False)

0 commit comments

Comments
 (0)