qa.reference

Data, file, and design patterns

Module Contents

Functions

get_aa_identifiers(→ Dict[str, List[str]])

Amino acid naming conventions and basic features.

sequence(→ List[str])

Returns the sequence of one of the mimochromes.

qa.reference.get_aa_identifiers() Dict[str, List[str]][source]

Amino acid naming conventions and basic features. Contains the full name, the one letter code, three-letter code, molecular formula, and molecular weight. :returns: aa – Dictionary containing the name, one letter code, three-letter code, and molecular formula. :rtype: dict[str, list[str, str, str]]

qa.reference.sequence(protein) List[str][source]

Returns the sequence of one of the mimochromes. Add additonal sequences to this function as lists. :Parameters: protein (str) – The name of the protei/peptide whose sequence has been requested.

Returns:

seq – A list of the amino acids in the requested protein/peptide.

Return type:

list[str]