Module protkit.structure
Package structure
contains classes to represent structural data in computational biology.
Structural Representations:
Protein
class inprotkit.structure.protein
: Represents structural data of a protein.Chain
class inprotkit.structure.chain
: Represents structural data of a chain.Residue
class inprotkit.structure.residue
: Represents structural data of a residue.Atom
class inprotkit.structure.atom
: Represents structural data of an atom.
Expand source code
"""
Package `structure` contains classes to represent structural data in computational biology.
Structural Representations:
- `Protein` class in `protein`: Represents structural data of a protein.
- `Chain` class in `chain`: Represents structural data of a chain.
- `Residue` class in `residue`: Represents structural data of a residue.
- `Atom` class in `atom`: Represents structural data of an atom.
"""
from .protein import Protein
from .chain import Chain
from .residue import Residue
from .atom import Atom
Sub-modules
protkit.structure.atom
-
Implements class
Atom
to represent an atom in a protein. protkit.structure.chain
-
Implements class
Chain
to represent a chain in a protein. protkit.structure.protein
-
Implements class
Protein
to represent a protein's structural data. protkit.structure.residue
-
Implements class
Residue
to represent a residue in a protein.