Module protkit.seq
Package seq contains classes to represent sequences in computational biology.
Sequence Representations:
Sequenceclass inprotkit.seq.sequence: Represents sequence data.ProteinSequenceclass inprotkit.seq.protein_sequence: Represents sequence data of a protein.AntibodySequenceclass inprotkit.seq.antibody_sequence: Represents sequence data of an antibody.NucleotideSequenceclass inprotkit.seq.nucleotide_sequence: Represents sequence data of a nucleotide.
Expand source code
"""
Package `seq` contains classes to represent sequences in computational biology.
Sequence Representations:
- `Sequence` class in `sequence`: Represents sequence data.
- `ProteinSequence` class in `protein_sequence`: Represents sequence data of a protein.
- `AntibodySequence` class in `antibody_sequence`: Represents sequence data of an antibody.
- `NucleotideSequence` class in `nucleotide_sequence`: Represents sequence data of a nucleotide.
"""
from .sequence import Sequence
from .protein_sequence import ProteinSequence
from .antibody_sequence import AntibodySequence
from .nucleotide_sequence import NucleotideSequence
from .sequence_alignment import SequenceAlignment
Sub-modules
protkit.seq.antibody_sequence-
Implements class
AntibodySequenceto represent an antibody sequence. protkit.seq.nucleotide_sequence-
Implements class
NucleotideSequenceto represent a nucleotide sequence … protkit.seq.protein_sequence-
Implements class
ProteinSequenceto represent a protein sequence. protkit.seq.sequence-
Implements class
Sequenceto represent a sequence of residues … protkit.seq.sequence_alignment-
Implements class
SequenceAlignmentto align two sequences …