eca4aa69416a6088b967cec35fd0d00a9bc8af89,src/biotite/application/dssp/app.py,DsspApp,__init__,#DsspApp#Any#Any#,54

Before Change


        super().__init__(bin_path)
        self._array = atom_array
        self._in_file_name  = temp_file("pdb")
        self._out_file_name = temp_file("pdb")

    def run(self):
        in_file = PDBFile()
        in_file.set_structure(self._array)

After Change


    def __init__(self, atom_array, bin_path="mkdssp"):
        super().__init__(bin_path)
        self._array = atom_array
        self._in_file  = NamedTemporaryFile("w", suffix=".pdb")
        self._out_file = NamedTemporaryFile("r", suffix=".dssp")

    def run(self):
        in_file = PDBFile()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: biotite-dev/biotite
Commit Name: eca4aa69416a6088b967cec35fd0d00a9bc8af89
Time: 2020-04-22
Author: patrick.kunzm@gmail.com
File Name: src/biotite/application/dssp/app.py
Class Name: DsspApp
Method Name: __init__


Project Name: biotite-dev/biotite
Commit Name: 8cb7809825da7a527eb81c87d3c79a99e3398f57
Time: 2020-04-23
Author: patrick.kunzm@gmail.com
File Name: doc/examples/scripts/structure/peptide_assembly.py
Class Name:
Method Name:


Project Name: biotite-dev/biotite
Commit Name: 8cb7809825da7a527eb81c87d3c79a99e3398f57
Time: 2020-04-23
Author: patrick.kunzm@gmail.com
File Name: doc/examples/scripts/structure/mmtf_trajectory.py
Class Name:
Method Name: