-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE](__init__): Importing submodules when a module is loaded
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from . import utils | ||
name = "biobb_structure_utils" | ||
__all__ = ["utils"] | ||
__version__ = "4.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
from . import cat_pdb | ||
from . import extract_atoms | ||
from . import extract_chain | ||
from . import extract_heteroatoms | ||
from . import extract_residues | ||
from . import extract_model | ||
from . import extract_molecule | ||
from . import remove_ligand | ||
from . import remove_molecules | ||
from . import closest_residues | ||
from . import remove_pdb_water | ||
from . import renumber_structure | ||
from . import sort_gro_residues | ||
from . import str_check_add_hydrogens | ||
from . import structure_check | ||
name = "utils" | ||
__all__ = ["cat_pdb", "extract_atoms", "extract_chain", "extract_heteroatoms", "extract_residues", "extract_model", "extract_molecule", "remove_ligand", "remove_molecules", "closest_residues", "remove_pdb_water", "renumber_structure", "sort_gro_residues", "str_check_add_hydrogens", "structure_check"] |