biobb-io 5.1.1__py3-none-any.whl → 5.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
biobb_io/__init__.py CHANGED
@@ -2,4 +2,4 @@ from . import api
2
2
 
3
3
  name = "biobb_io"
4
4
  __all__ = ["api"]
5
- __version__ = "5.1.1"
5
+ __version__ = "5.2.0"
biobb_io/api/mddb.py CHANGED
@@ -169,6 +169,7 @@ mddb.__doc__ = MDDB.__doc__
169
169
  main = MDDB.get_main(
170
170
  mddb,
171
171
  "This class is a wrapper for downloading a trajectory / topology pair from the MDDB Database.",
172
+ custom_flags={"output_top_path": "-o", "output_trj_path": "-t"}
172
173
  )
173
174
 
174
175
  if __name__ == "__main__":
@@ -15,7 +15,7 @@ class MemProtMDSimList(BiobbObject):
15
15
  | Wrapper for the `MemProtMD DB REST API <http://memprotmd.bioch.ox.ac.uk/>`_ to get all available membrane-protein systems (simulations).
16
16
 
17
17
  Args:
18
- output_simulations (str): Path to the output JSON file. File type: output. `Sample file <https://github.com/bioexcel/biobb_io/raw/master/biobb_io/test/reference/api/output_sim_list.json>`_. Accepted formats: json (edam:format_3464).
18
+ output_simulations (str): Path to the output JSON file. File type: output. `Sample file <https://github.com/bioexcel/biobb_io/raw/master/biobb_io/test/reference/api/output_sim_list_schema_validator.json>`_. Accepted formats: json (edam:format_3464).
19
19
  properties (dic - Python dictionary object containing the tool parameters, not input/output files):
20
20
  * **remove_tmp** (*bool*) - (True) [WF property] Remove temporal files.
21
21
  * **restart** (*bool*) - (False) [WF property] Do not execute if output files exist.
@@ -16,7 +16,7 @@ class MemProtMDSimSearch(BiobbObject):
16
16
  | Wrapper for the `MemProtMD DB REST API <http://memprotmd.bioch.ox.ac.uk/>`_ to perform advanced searches.
17
17
 
18
18
  Args:
19
- output_simulations (str): Path to the output JSON file. File type: output. `Sample file <https://github.com/bioexcel/biobb_io/raw/master/biobb_io/test/reference/api/output_sim_search.json>`_. Accepted formats: json (edam:format_3464).
19
+ output_simulations (str): Path to the output JSON file. File type: output. `Sample file <https://github.com/bioexcel/biobb_io/raw/master/biobb_io/test/reference/api/output_sim_search_schema_validator.json>`_. Accepted formats: json (edam:format_3464).
20
20
  properties (dic - Python dictionary object containing the tool parameters, not input/output files):
21
21
  * **collection_name** (*str*) - ("refs") Name of the collection to query.
22
22
  * **keyword** (*str*) - (None) String to search for in the database metadata. Examples are families like gpcr or porin. Values: porin, outer membrane protein, membrane protein, gpcr (7-transmembrane domain receptors transducing extracellular signals into cells), ion channels, rhodopsin (The most famous GPCRs), abc, mip (Major Intrinsic Protein (MIP)/FNT superfamily: specific for the transport of water and small neutral solutes), ligand-gated (Ligand-dependent signal conversion from chemical signals to electric signals), ammonia (Regulating transepithelial ammonia secretion), mapeg (Eicosanoid and Glutathione metabolism proteins), transmembrane (Heme biosynthesis), protein, kinase (Tyrosine-protein kinases: regulate central nervous system; gene transcription and cell differentiation), glycoprotein (Expression of TCR complex), immunoglobulin (Recognition; binding and adhesion process of cells), integrin (Bridges for cell-cell and cell-extracellular matrix interaction), bnip3 (BNip3 protein family: protect cell from apoptosis), bcl-2 (Regulating cell-death; either induce apoptotic or inhibit apoptosis), atpase (ATPase regulators; P-P-bond hydrolysis-driven transporter), cytochrome (Terminal oxidase enzyme in electron transfer chain), nadp (Transmembrane proteins with NAD(P)-binding Rossmann-fold domains: monoamine oxidase; deaminates norepinephrine; epinephrine; serotonin and dopamine), a4 (Amyloid beta A4 protein; involved in alzheimer's diseases), lysosome (Lysosome-associated membrane glycoprotein: specific to lysosomes; CD107), necrosis (Tumor necrosis factor recepto: binding with TNF and NGF; interacting with a variety of signal molecules; highly associated with apoptosis), oxidoreductase (DHODH; biosynthesis of orotate), ceramidase (Neutral/alkaline ceramidase: converting sphingolipid to sphingosine), dehydrogenase (Aldehyde dehydrogenase:ALDH; Oxidation of aldehydes), mitochondrial, plastid.
@@ -129,7 +129,7 @@ class PdbClusterZip(BiobbObject):
129
129
  fu.log("Zipping the pdb files to: %s" % self.output_pdb_zip_path)
130
130
  fu.zip_list(self.output_pdb_zip_path, file_list, out_log=self.out_log)
131
131
 
132
- self.tmp_files.extend([unique_dir])
132
+ self.tmp_files.append(unique_dir)
133
133
  self.remove_tmp_files()
134
134
 
135
135
  self.check_arguments(output_files_created=True, raise_exception=False)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: biobb_io
3
- Version: 5.1.1
3
+ Version: 5.2.0
4
4
  Summary: Biobb_io is the Biobb module collection to fetch data to be consumed by the rest of the Biobb building blocks.
5
5
  Home-page: https://github.com/bioexcel/biobb_io
6
6
  Author: Biobb developers
@@ -9,15 +9,15 @@ Project-URL: Documentation, http://biobb-io.readthedocs.io/en/latest/
9
9
  Project-URL: Bioexcel, https://bioexcel.eu/
10
10
  Keywords: Bioinformatics Workflows BioExcel Compatibility
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
- Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: License :: OSI Approved :: Apache Software License
14
14
  Classifier: Operating System :: MacOS :: MacOS X
15
15
  Classifier: Operating System :: POSIX
16
16
  Classifier: Operating System :: Unix
17
- Requires-Python: >=3.9
17
+ Requires-Python: >=3.10
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: biobb_common==5.1.1
20
+ Requires-Dist: biobb_common==5.2.0
21
21
  Dynamic: author
22
22
  Dynamic: author-email
23
23
  Dynamic: classifier
@@ -36,7 +36,7 @@ Dynamic: summary
36
36
  [![](https://img.shields.io/conda/vn/bioconda/biobb_io?label=Conda)](https://anaconda.org/bioconda/biobb_io)
37
37
  [![](https://img.shields.io/conda/dn/bioconda/biobb_io?label=Conda%20Downloads)](https://anaconda.org/bioconda/biobb_io)
38
38
  [![](https://img.shields.io/badge/Docker-Quay.io-blue)](https://quay.io/repository/biocontainers/biobb_io?tab=tags)
39
- [![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_io:5.1.1--pyhdfd78af_0)
39
+ [![](https://img.shields.io/badge/Singularity-GalaxyProject-blue)](https://depot.galaxyproject.org/singularity/biobb_io:5.2.0--pyhdfd78af_0)
40
40
 
41
41
  [![](https://img.shields.io/badge/OS-Unix%20%7C%20MacOS-blue)](https://github.com/bioexcel/biobb_io)
42
42
  [![](https://img.shields.io/pypi/pyversions/biobb-io.svg?label=Python%20Versions)](https://pypi.org/project/biobb-io/)
@@ -74,7 +74,7 @@ The latest documentation of this package can be found in our readthedocs site:
74
74
  [latest API documentation](http://biobb-io.readthedocs.io/en/latest/).
75
75
 
76
76
  ### Version
77
- v5.1.1 2025.1
77
+ v5.2.0 2025.2
78
78
 
79
79
  ### Installation
80
80
  Using PIP:
@@ -100,12 +100,12 @@ Using DOCKER:
100
100
  * Installation:
101
101
 
102
102
 
103
- docker pull quay.io/biocontainers/biobb_io:5.1.1--pyhdfd78af_0
103
+ docker pull quay.io/biocontainers/biobb_io:5.2.0--pyhdfd78af_0
104
104
 
105
105
  * Usage:
106
106
 
107
107
 
108
- docker run quay.io/biocontainers/biobb_io:5.1.1--pyhdfd78af_0 <command>
108
+ docker run quay.io/biocontainers/biobb_io:5.2.0--pyhdfd78af_0 <command>
109
109
 
110
110
 
111
111
  The command list and specification can be found at the [Command Line documentation](https://biobb-io.readthedocs.io/en/latest/command_line.html).
@@ -117,7 +117,7 @@ Using SINGULARITY:
117
117
  * Installation:
118
118
 
119
119
 
120
- singularity pull --name biobb_io.sif https://depot.galaxyproject.org/singularity/biobb_io:5.1.1--pyhdfd78af_0
120
+ singularity pull --name biobb_io.sif https://depot.galaxyproject.org/singularity/biobb_io:5.2.0--pyhdfd78af_0
121
121
 
122
122
 
123
123
  * Usage:
@@ -1,4 +1,4 @@
1
- biobb_io/__init__.py,sha256=yuyKuMxXekhEdVhlQAADYrFWmGfm2YyXpYKUdIDHuvc,77
1
+ biobb_io/__init__.py,sha256=Xvx_Rj0RAAmZIhyokvORbIxSt6YB6ylDI6ziG0z8U84,77
2
2
  biobb_io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  biobb_io/api/__init__.py,sha256=s4K59-8EX7yX2qBtB8717ynIEjQ0lVNTp0BDSoc_raM,558
4
4
  biobb_io/api/alphafold.py,sha256=EsUHtbypku6rNtMaDrnKf3KLoanuOOB0LOZOnenmoP0,4371
@@ -7,19 +7,19 @@ biobb_io/api/canonical_fasta.py,sha256=ohuVq410Vk_OvnMVYxReb9QUuce3Ki3FFhV_DJhKZ
7
7
  biobb_io/api/common.py,sha256=KY3ayHCaGBe9zTLDdDc_wK13xXeIaEHTegeWPR2t02M,15766
8
8
  biobb_io/api/ideal_sdf.py,sha256=BKpFIPcZ8vV6ayQXCmP3Kt_rcQf3ltQCRTtcCqGHriE,4566
9
9
  biobb_io/api/ligand.py,sha256=pMd5wvYqYNlVYT5MatrX346whVfwYY58B2RR_FqEwhE,4610
10
- biobb_io/api/mddb.py,sha256=J5qgudIQEeE9-UXwjFPQAiFkc7aHXVMMG7Z_j2Dj3yI,7067
10
+ biobb_io/api/mddb.py,sha256=RWw1MgTTUpvdV-k7ZGNxBr4_wMXf29kGMZKdDj9UTYA,7135
11
11
  biobb_io/api/memprotmd_sim.py,sha256=UKgc4UJPukjmBwelVcKbFqGqQhA9BOtfrlJiHf_aW5Q,4120
12
- biobb_io/api/memprotmd_sim_list.py,sha256=WOg4YqWfMvIAgz_19oZ-8asKJnFv8MmRfz0t5ZQhUZo,4059
13
- biobb_io/api/memprotmd_sim_search.py,sha256=vWfBxNYCmGwGyzTpHnmnuwQ39ZXWO8T0MhdjGjGgZr4,6419
12
+ biobb_io/api/memprotmd_sim_list.py,sha256=aF4bXr--GZ8byK3ydtvrIL1OesvPLeTERAHsZ5r6AeE,4076
13
+ biobb_io/api/memprotmd_sim_search.py,sha256=VkbHE_qVoQov3iJQFaOy43ZSahCqOHy-7F2s9idcXxE,6436
14
14
  biobb_io/api/mmcif.py,sha256=M8Tlto6d2hLTUwZGo6zIUGO5bzN6ZwMqYoiMMu1b-rM,4628
15
15
  biobb_io/api/pdb.py,sha256=uRCMPSvuOSUObMsxlRC513wJ2bmFEh9P8FPtG30yfp0,4975
16
- biobb_io/api/pdb_cluster_zip.py,sha256=9s_HXWep7X3h-kNq1cYbadXgDmsAlG8_Sat0q0snyDA,6633
16
+ biobb_io/api/pdb_cluster_zip.py,sha256=2Ps9R2QhBvTflrRjyz3k6x1CzDnF57E76ng8SguvGjk,6631
17
17
  biobb_io/api/pdb_variants.py,sha256=BGIbsHl64IANiq2R39dycIxBRGPjm3u1oGpTyeWQ2nA,6707
18
18
  biobb_io/api/structure_info.py,sha256=aoh_Do7QipPgsse7ay-nlddeGCrK-YEjUHbg1Q21HgE,4443
19
19
  biobb_io/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- biobb_io-5.1.1.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
21
- biobb_io-5.1.1.dist-info/METADATA,sha256=LTPhHWFk9SzHSC-AxEUmkmrGU8wdoAvhSlTRHJfFxxc,7049
22
- biobb_io-5.1.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
23
- biobb_io-5.1.1.dist-info/entry_points.txt,sha256=dDYvVClLKe_Aa3HaMm-7WuS2d16FKGxlnKl816Cf5T4,644
24
- biobb_io-5.1.1.dist-info/top_level.txt,sha256=1VPldlX2AnFaqODGFJK10WN8AOQuulpX88bLSaQdoS8,9
25
- biobb_io-5.1.1.dist-info/RECORD,,
20
+ biobb_io-5.2.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
21
+ biobb_io-5.2.0.dist-info/METADATA,sha256=B3RCQFlwvu7FMRM1StyFKIKxmbGZ5LCUmfjc6Wt9URk,7051
22
+ biobb_io-5.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
23
+ biobb_io-5.2.0.dist-info/entry_points.txt,sha256=dDYvVClLKe_Aa3HaMm-7WuS2d16FKGxlnKl816Cf5T4,644
24
+ biobb_io-5.2.0.dist-info/top_level.txt,sha256=1VPldlX2AnFaqODGFJK10WN8AOQuulpX88bLSaQdoS8,9
25
+ biobb_io-5.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5