mkt.databases.colors.DICT_COLORS

mkt.databases.colors.DICT_COLORS = {'ALPHABET_PROJECT': {'DICT_ANNOTATION': None, 'DICT_COLORS': {'-': '#FFFFFF', 'A': '#F0A3FF', 'B': '#0075DC', 'C': '#993F00', 'D': '#4C005C', 'E': '#191919', 'F': '#005C31', 'G': '#2BCE48', 'H': '#FFCC99', 'I': '#808080', 'J': '#94FFB5', 'K': '#8F7C00', 'L': '#9DCC00', 'M': '#C20088', 'N': '#003380', 'O': '#FFA405', 'P': '#FFA8BB', 'Q': '#426600', 'R': '#FF0010', 'S': '#5EF1F2', 'T': '#00998F', 'U': '#E0FF66', 'V': '#740AFF', 'W': '#990000', 'X': '#FFFF80', 'Y': '#FFE100', 'Z': '#FF5005'}}, 'ASAP': {'DICT_ANNOTATION': None, 'DICT_COLORS': {'-': 'white', 'A': 'red', 'C': 'orange', 'D': 'yellow', 'E': 'cyan', 'F': 'navy', 'G': 'magenta', 'H': 'pink', 'I': 'brown', 'K': 'lime', 'L': 'gray', 'M': 'teal', 'N': 'green', 'P': 'olive', 'Q': 'purple', 'R': 'blue', 'S': 'maroon', 'T': 'silver', 'V': 'violet', 'W': 'gold', 'Y': 'skyblue'}}, 'CLUSTALX': {'DICT_ANNOTATION': {'aromatic': 'cyan', 'cysteine': 'pink', 'glycine': 'orange', 'hydrophobic': 'blue', 'negative': 'magenta', 'polar': 'green', 'positive': 'red', 'proline': 'yellow'}, 'DICT_COLORS': {'-': 'white', 'A': 'blue', 'C': 'pink', 'D': 'magenta', 'E': 'magenta', 'F': 'blue', 'G': 'orange', 'H': 'cyan', 'I': 'blue', 'K': 'red', 'L': 'blue', 'M': 'blue', 'N': 'green', 'P': 'yellow', 'Q': 'green', 'R': 'red', 'S': 'green', 'T': 'green', 'V': 'blue', 'W': 'blue', 'Y': 'cyan'}}, 'RASMOL': {'DICT_ANNOTATION': {'-': '#BEA06E', 'A': '#C8C8C8', 'C, M': '#E6E600', 'D, E': '#E60A0A', 'F, Y': '#3232AA', 'G': '#EBEBEB', 'H': '#8282D2', 'I, L, V': '#0F820F', 'N, Q': '#00DCDC', 'P': '#DC9682', 'R, K': '#145AFF', 'S, T': '#FA9600', 'W': '#B45AB4'}, 'DICT_COLORS': {'-': '#BEA06E', 'A': '#C8C8C8', 'C': '#E6E600', 'D': '#E60A0A', 'E': '#E60A0A', 'F': '#3232AA', 'G': '#EBEBEB', 'H': '#8282D2', 'I': '#0F820F', 'K': '#145AFF', 'L': '#0F820F', 'M': '#E6E600', 'N': '#00DCDC', 'P': '#DC9682', 'Q': '#00DCDC', 'R': '#145AFF', 'S': '#FA9600', 'T': '#FA9600', 'V': '#0F820F', 'W': '#B45AB4', 'Y': '#3232AA'}}, 'SHAPELY': {'DICT_ANNOTATION': {'-': '#000000', 'A': '#8CFF8C', 'C, M': '#FFFF70', 'D, E': '#A00042', 'F, Y': '#534C42', 'G': '#FFFFFF', 'H': '#7070FF', 'I, L, V': '#004C00', 'N, Q': '#FF7C70', 'P': '#525252', 'R, K': '#00007C', 'S, T': '#FF7042', 'W': '#4F4600'}, 'DICT_COLORS': {'-': '#000000', 'A': '#8CFF8C', 'C': '#FFFF70', 'D': '#A00042', 'E': '#A00042', 'F': '#534C42', 'G': '#FFFFFF', 'H': '#7070FF', 'I': '#004C00', 'K': '#00007C', 'L': '#004C00', 'M': '#FFFF70', 'N': '#FF7C70', 'P': '#525252', 'Q': '#FF7C70', 'R': '#00007C', 'S': '#FF7042', 'T': '#FF7042', 'V': '#004C00', 'W': '#4F4600', 'Y': '#534C42'}}, 'ZAPPO': {'DICT_ANNOTATION': {'aliphatic hydrophobic': '#ffafaf', 'aromatic': '#ffc803', 'conformationally special': '#ff00ff', 'cysteine': '#ffff00', 'hydrophilic': '#02ff00', 'negative': '#ff0000', 'positive': '#6464ff'}, 'DICT_COLORS': {'-': '#000000', 'A': '#ffafaf', 'C': '#ffff00', 'D': '#ff0000', 'E': '#ff0000', 'F': '#ffc803', 'G': '#ff00ff', 'H': '#6464ff', 'I': '#ffafaf', 'K': '#6464ff', 'L': '#ffafaf', 'M': '#ffafaf', 'N': '#02ff00', 'P': '#ff00ff', 'Q': '#02ff00', 'R': '#6464ff', 'S': '#02ff00', 'T': '#02ff00', 'V': '#ffafaf', 'W': '#ffc803', 'Y': '#ffc803'}}}

Mapping amino acid to color using specified dictionary. Dictionaries include color schemes from: - 2010 Colour Alphabet Project (ALPHABET_PROJECT) - ASAP Discovery palette (ASAP) - RasMol amino color scheme (RASMOL) - Shapely amino color scheme (SHAPELY) - Clustal X color scheme (CLUSTALX) - Zappo color scheme (ZAPPO) Dictionary keys include: - DICT_COLORS: Dictionary mapping single-letter amino acid to color - DICT_ANNOTATION: Dictionary mapping amino acid groups to color if one exists

Type:

dict[dict[str, str], dict[str, str]]