Interface AminoAcidData

Static properties of an amino acid type Contains immutable characteristics independent of the specific codon

interface AminoAcidData {
    abbrv: string;
    charge: AminoAcidCharge;
    hydrophobicity: number;
    molecularWeight: number;
    name: string;
    polarity: AminoAcidPolarity;
    sideChainType: AminoAcidSideChainType;
    singleLetterCode: string;
}

Implemented by

Properties

abbrv: string
hydrophobicity: number
molecularWeight: number
name: string
sideChainType: AminoAcidSideChainType
singleLetterCode: string