gemmi-protools 0.1.16__py3-none-any.whl → 1.0.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.

Potentially problematic release.


This version of gemmi-protools might be problematic. Click here for more details.

@@ -2,7 +2,4 @@
2
2
  @Author: Luo Jiejian
3
3
  """
4
4
  from gemmi_protools.io.convert import gemmi2bio, bio2gemmi
5
- from gemmi_protools.io.reader import StructureParser
6
- from gemmi_protools.utils.align import StructureAligner
7
- from gemmi_protools.utils.ppi import ppi_interface_residues
8
- from gemmi_protools.utils.dockq import dockq_score, dockq_score_interface
5
+ from gemmi_protools.io.reader import StructureParser, is_cif, is_pdb
@@ -6,10 +6,8 @@ import gemmi
6
6
  import numpy as np
7
7
  from Bio.PDB.Structure import Structure as BioStructure
8
8
  from Bio.PDB.StructureBuilder import StructureBuilder
9
- from typeguard import typechecked
10
9
 
11
10
 
12
- @typechecked
13
11
  def gemmi2bio(gemmi_structure: gemmi.Structure) -> BioStructure:
14
12
  """
15
13
  Convert gemmi structure to biopython structure
@@ -52,7 +50,6 @@ def gemmi2bio(gemmi_structure: gemmi.Structure) -> BioStructure:
52
50
  return bio_structure
53
51
 
54
52
 
55
- @typechecked
56
53
  def bio2gemmi(bio_structure: BioStructure) -> gemmi.Structure:
57
54
  """
58
55
  Convert biopython structure to gemmi structure