Coverage for biobb_pdb_tools/pdb_tools/biobb_pdb_selchain.py: 78%
50 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-20 08:28 +0000
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-20 08:28 +0000
1#!/usr/bin/env python3
3"""Module containing the Pdbselchain class and the command line interface."""
5import argparse
6from typing import Optional
8from biobb_common.configuration import settings
9from biobb_common.generic.biobb_object import BiobbObject
10from biobb_common.tools import file_utils as fu
11from biobb_common.tools.file_utils import launchlogger
14# 1. Rename class as required
15class Pdbselchain(BiobbObject):
16 """
17 | biobb_pdb_tools Pdbselchain
18 | Extracts one or more chains from a PDB file.
19 | This tool extracts a specific chain or list of chains from a PDB file, discarding all others.
21 Args:
22 input_file_path (str): PDB file. File type: input. `Sample file <https://raw.githubusercontent.com/bioexcel/biobb_pdb_tools/master/biobb_pdb_tools/test/data/pdb_tools/input_pdb_selchain.pdb>`_. Accepted formats: pdb (edam:format_1476).
23 output_file_path (str): PDB file with selected chains. File type: output. `Sample file <https://raw.githubusercontent.com/bioexcel/biobb_pdb_tools/master/biobb_pdb_tools/test/reference/pdb_tools/ref_pdb_selchain.pdb>`_. Accepted formats: pdb (edam:format_1476).
24 properties (dic):
25 * **chains** (*str*) - ('A') Chain or list of chains (comma separated) to extract from the PDB file.
26 * **binary_path** (*str*) - ("pdb_selchain") Path to the pdb_selchain executable binary.
27 * **remove_tmp** (*bool*) - (True) [WF property] Remove temporal files.
28 * **restart** (*bool*) - (False) [WF property] Do not execute if output files exist.
30 Examples:
31 This is a use example of how to use the building block from Python::
33 from biobb_pdb_tools.pdb_tools.biobb_pdb_selchain import biobb_pdb_selchain
35 prop = {
36 'chains': 'A,B'
37 }
38 biobb_pdb_selchain(input_file_path='/path/to/input.pdb',
39 output_file_path='/path/to/output.pdb',
40 properties=prop)
42 Info:
43 * wrapped_software:
44 * name: pdb_tools
45 * version: >=2.5.0
46 * license: Apache-2.0
47 * ontology:
48 * name: EDAM
49 * schema: http://edamontology.org/EDAM.owl
51 """
53 def __init__(
54 self, input_file_path, output_file_path, properties=None, **kwargs
55 ) -> None:
56 properties = properties or {}
58 super().__init__(properties)
59 self.locals_var_dict = locals().copy()
61 self.io_dict = {
62 "in": {"input_file_path": input_file_path},
63 "out": {"output_file_path": output_file_path},
64 }
66 self.binary_path = properties.get("binary_path", "pdb_selchain")
67 self.chains = properties.get("chains", "A")
68 self.properties = properties
70 self.check_properties(properties)
71 self.check_arguments()
73 @launchlogger
74 def launch(self) -> int:
75 """Execute the :class:`Pdbselchain <biobb_pdb_tools.pdb_tools.pdb_selchain>` object."""
77 if self.check_restart():
78 return 0
79 self.stage_files()
81 instructions = []
82 if self.chains:
83 instructions.append("-" + str(self.chains))
84 fu.log("Appending chains to select", self.out_log, self.global_log)
86 self.cmd = [
87 self.binary_path,
88 " ".join(instructions),
89 self.stage_io_dict["in"]["input_file_path"],
90 ">",
91 self.io_dict["out"]["output_file_path"],
92 ]
94 fu.log(" ".join(self.cmd), self.out_log, self.global_log)
96 fu.log(
97 "Creating command line with instructions and required arguments",
98 self.out_log,
99 self.global_log,
100 )
102 self.run_biobb()
103 self.copy_to_host()
104 self.tmp_files.extend([self.stage_io_dict.get("unique_dir", "")])
105 self.remove_tmp_files()
106 self.check_arguments(output_files_created=True, raise_exception=False)
108 return self.return_code
111def biobb_pdb_selchain(
112 input_file_path: str,
113 output_file_path: str,
114 properties: Optional[dict] = None,
115 **kwargs,
116) -> int:
117 """Create :class:`Pdbselchain <biobb_pdb_tools.pdb_tools.pdb_selchain>` class and
118 execute the :meth:`launch() <biobb_pdb_tools.pdb_tools.pdb_selchain.launch>` method."""
120 return Pdbselchain(
121 input_file_path=input_file_path,
122 output_file_path=output_file_path,
123 properties=properties,
124 **kwargs,
125 ).launch()
128biobb_pdb_selchain.__doc__ = Pdbselchain.__doc__
131def main():
132 """Command line execution of this building block. Please check the command line documentation."""
133 parser = argparse.ArgumentParser(
134 description="Extracts one or more chains from a PDB file.",
135 formatter_class=lambda prog: argparse.RawTextHelpFormatter(
136 prog, width=99999),
137 )
138 parser.add_argument("--config", required=True, help="Configuration file")
140 required_args = parser.add_argument_group("required arguments")
141 required_args.add_argument(
142 "--input_file_path",
143 required=True,
144 help="Description for the first input file path. Accepted formats: pdb.",
145 )
146 required_args.add_argument(
147 "--output_file_path",
148 required=True,
149 help="Description for the output file path. Accepted formats: pdb.",
150 )
152 args = parser.parse_args()
153 args.config = args.config or "{}"
154 properties = settings.ConfReader(config=args.config).get_prop_dic()
156 biobb_pdb_selchain(
157 input_file_path=args.input_file_path,
158 output_file_path=args.output_file_path,
159 properties=properties,
160 )
163if __name__ == "__main__":
164 main()